diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 96bd5a28..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,15 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: circleci/buld-image - steps: - - checkout - - run: 'git clone https://github.com/osresearch/heads' - - run: 'make BOARD=qemu-coreboot' - - run: 'make BOARD=qemu-linuxboot' -workflows: - version: 2 - build_and_test: - jobs: - - build diff --git a/mainboards/.github/workflows/ci.yml b/.github/workflows/ci.yml similarity index 68% rename from mainboards/.github/workflows/ci.yml rename to .github/workflows/ci.yml index ba4af477..22d67986 100644 --- a/mainboards/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,9 +3,9 @@ on: # Triggers the workflow on push or pull request events but only for the # master branch. push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] # Triggers the workflow every day at 23:00. schedule: @@ -26,8 +26,6 @@ jobs: env: # Setup $GOPATH GOPATH: ${{ github.workspace }}/go - # Turn off modules because they are broken. - GO111MODULE: off # Run the build for each one of these configurations in parallel. strategy: @@ -35,31 +33,9 @@ jobs: # The `${{ matrix.mainboard }}` variable is replaced with each of these. mainboard: # '-' is used instead of '/' due to restrictions on artifact upload. - - aeeon-up - - aeeon-upxtreme - - amd-rome - ampere-jade - - bytedance-g220a - - cubie-board - - digitalloggers-atomicpi - - hpe-dl360gen10 - - intel-generic - - intel-hw - - intel-minplatform - - intel-s2600 - - lenovo-hr630 - - lenovo-sr630 - - lenovo-thinkpad - - marvel-macchiatobin - - opentitanpilot-dresden - - pcengines-apu - - pcengines-apu2 - - seeed-beaglev - - slimboot - - st-st32mp1517c - - tyan7106 + - aeeon-up - qemu-x86_64 - - walmart-robot # Do not cancel all jobs steps if a single one fails. fail-fast: false @@ -69,22 +45,29 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can # access it. - - uses: actions/checkout@v2 - + - uses: actions/checkout@v4 + # We need this newer version of Go. + - name: Go version + uses: actions/setup-go@v5 + with: + go-version: '1.21' - name: Install dependent packages run: | + set -ex sudo apt-get update - sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi{,hf} libelf-dev u-boot-tools - + sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi{,hf} gcc-riscv64-linux-gnu libelf-dev u-boot-tools # Runs a set of commands using the runners shell - name: Make ${{ matrix.mainboard }} kernel run: | - PATH=$PATH:$GOPATH/bin + set -ex + go version + cd mainboards + PATH=$GOPATH/bin:/usr/local/go/bin:$PATH cd $(echo ${{ matrix.mainboard }} | tr '-' '/') make fetch make flashkernel - name: Upload Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.mainboard }} path: | diff --git a/.gitignore b/.gitignore index 51876a4c..a52f8cb1 100644 --- a/.gitignore +++ b/.gitignore @@ -51,6 +51,14 @@ Module.symvers Mkfile.old dkms.conf +# Kernel +linux/ + +# Build artifacts +*.cpio +bzImage +flashkernel + # Other things .*.swp *.xz @@ -63,9 +71,9 @@ dkms.conf *.tgz *.img *.rom -*.cpio typescript* config/*.old +*.Log *.log *~ crossgcc @@ -81,12 +89,12 @@ clean *.bin *.bad blobs/*/volume* +bin/create-ffs.utk +bin/utk edk2 -bzImage boards/*/volume-* .config *.raw *.pad *.hop *.efi -.* diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..3ebcd980 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "u-root"] + path = u-root + url = https://github.com/u-root/u-root +[submodule "cpu"] + path = cpu + url = https://github.com/u-root/cpu diff --git a/FAQ.md b/FAQ.md index ef139551..f6f1b4e4 100644 --- a/FAQ.md +++ b/FAQ.md @@ -40,7 +40,7 @@ Where can I learn more about LinuxBoot? * [LinuxBoot.org](https://linuxboot.org) * [Ron Minnich's Open Source Summit presentation](https://www.youtube.com/watch?v=iffTJ1vPCSo) * [Trammell Hudson's 34C3 presentation](https://trmm.net/LinuxBoot_34c3) -* [Install instructions for the R630](https://trmm.net/NERF) +* [Install instructions for the R630](https://trmm.net/NERF/#installing-on-a-dell-r630) What's wrong with UEFI Secure Boot? diff --git a/Makefile b/Makefile index 488bd400..572bd594 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ $(BUILD)/%.vol: $(filter-out $(BUILD)/$(BOARD).txt,$^) create-ffs = \ - ./bin/create-ffs \ + ./bin/create-ffs$(if $(USE_UTK),.utk,) \ -o $@ \ --name $(basename $(notdir $@)) \ --version 1.0 \ @@ -139,15 +139,25 @@ dxe/%.ffs: ifndef USE_UTK $(BUILD)/linuxboot.rom: $(FVS) else -$(BUILD)/linuxboot.rom: bin/utk $(DXE_FFS) +DXE_FFS += dxe/linuxboot.ffs +DXE_FFS += $(BUILD)/Linux.ffs +DXE_FFS += $(BUILD)/Initrd.ffs + +# The Perl way of building replaces DxeCore with a custom version but +# UTK needs the original DxeCore, so uncomment DxeCore in image-files.txt +# on-the-fly before passing it to UTK. +$(BUILD)/linuxboot.rom: bin/utk bin/create-ffs.utk $(DXE_FFS) $< \ $(ROM) \ - remove_dxes_except boards/$(BOARD)/image-files.txt \ + remove_dxes_except \ + <(sed 's|^#[[:space:]]\+\(d6a2cb7f-6a18-4e2f-b43b-9920a733700a\)[[:space:]]\+\(DxeCore\)|\1 \2|' \ + boards/$(BOARD)/image-files.txt) \ $(foreach ffs,$(DXE_FFS), insert_dxe $(ffs)) \ $(UTK_EXTRA_OPS) \ save $@ endif clean: + $(MAKE) -C dxe clean $(RM) $(BUILD)/{*.ffs,*.rom,*.vol,*.tmp} - $(RM) ./bin/utk + $(RM) ./bin/utk ./bin/create-ffs.utk diff --git a/Makefile.utk b/Makefile.utk index 1c31abf3..87e5532a 100644 --- a/Makefile.utk +++ b/Makefile.utk @@ -26,3 +26,6 @@ bin/utk: go get github.com/linuxboot/fiano/cmds/utk cp $(GOPATH)/bin/utk $@ +bin/create-ffs.utk: + go get github.com/linuxboot/fiano/cmds/create-ffs + cp $(GOPATH)/bin/create-ffs $@ diff --git a/README.md b/README.md index 79cfc11e..4a255616 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Supported server mainboards === * qemu emulated Q35 systems * [Intel S2600WF](https://trmm.net/S2600wf) -* [Dell R630](https://trmm.net/NERF) +* [Dell R630](https://trmm.net/NERF/#installing-on-a-dell-r630) * Winterfell Open Compute node (works well) * Leopard Open Compute node (works well) * Tioga Pass Open Compute node (works well) @@ -81,6 +81,13 @@ to set the following variables: * `linuxboot-size`: the final size of the ROM image in bytes (we should verify this against the real ROM instead) +Previous Implementations +=== + +For reference, [earlier approaches are documented](graveyard.md). +Have a look at those in case you want to add a board that was already supported. +There is knowledge in terms of what had to be done in order to deploy LinuxBoot. + More info === * https://www.linuxboot.org/ diff --git a/boards/qemu/image-files.txt b/boards/qemu/image-files.txt index 0a699842..5ae8d58b 100644 --- a/boards/qemu/image-files.txt +++ b/boards/qemu/image-files.txt @@ -6,10 +6,10 @@ d93ce3d8-a7eb-4730-8c8e-cc466a9ecc3c ReportStatusCodeRouterRuntimeDxe b601f8c4-43b7-4784-95b1-f4226cb40cee RuntimeDxe f80697e9-7fd6-4665-8646-88e33ef71dfc SecurityStubDxe 13ac6dd0-73d0-11d4-b06b-00aa00bd6de7 EbcDxe -79ca4208-bba1-4a9a-8456-e1e66a81484e Legacy8259 +245CB4DA-8E15-4A1B-87E3-9878FFA07520 Legacy8259 a19b1fe7-c1bc-49f8-875f-54a5d542443f CpuIo2Dxe 1a1e4886-9517-440e-9fde-3be44cee2136 CpuDxe -f2765dec-6b41-11d5-8e71-00902707b35e Timer +C190FE35-44AA-41A1-8AEA-4947BC60E09D Timer f6697ac4-a776-4ee1-b643-1feff2b615bb IncompatiblePciDeviceSupportDxe 11a6edf6-a9be-426d-a6cc-b22fe51d9224 PciHotPlugInitDxe 128fb770-5e79-4176-9e51-9bb268a17dd1 PciHostBridgeDxe @@ -29,6 +29,7 @@ f9d88642-0737-49bc-81b5-6889cd57d9ea SmbiosDxe 49970331-e3fa-4637-9abc-3b7868676970 AcpiPlatform 7e374e25-8e01-4fee-87f2-390c23c606cd ACPI data bdce85bb-fbaa-4f4e-9264-501a2c249581 S3SaveStateDxe +7C04A583-9E3E-4F1C-AD65-E05268D0B4D1 Shell d9dcc5df-4007-435e-9098-8970935504b2 PlatformDxe 2ec9da37-ee35-4de9-86c5-6d9a81dc38a7 AmdSevDxe 8657015b-ea43-440d-949a-af3be365c0fc IoMmuDxe diff --git a/boards/x3550m5/acpi/APIC b/boards/x3550m5/acpi/APIC deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/BDAT b/boards/x3550m5/acpi/BDAT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/BERT b/boards/x3550m5/acpi/BERT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/DMAR b/boards/x3550m5/acpi/DMAR deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/DSDT b/boards/x3550m5/acpi/DSDT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/EINJ b/boards/x3550m5/acpi/EINJ deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/ERST b/boards/x3550m5/acpi/ERST deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/FACP b/boards/x3550m5/acpi/FACP deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/FACS b/boards/x3550m5/acpi/FACS deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/HEST b/boards/x3550m5/acpi/HEST deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/HPET b/boards/x3550m5/acpi/HPET deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/MCFG b/boards/x3550m5/acpi/MCFG deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/MSCT b/boards/x3550m5/acpi/MSCT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/OEM0 b/boards/x3550m5/acpi/OEM0 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/OEM1 b/boards/x3550m5/acpi/OEM1 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/PRAD b/boards/x3550m5/acpi/PRAD deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SLIC b/boards/x3550m5/acpi/SLIC deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SLIT b/boards/x3550m5/acpi/SLIT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SRAT b/boards/x3550m5/acpi/SRAT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT1 b/boards/x3550m5/acpi/SSDT1 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT2 b/boards/x3550m5/acpi/SSDT2 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT3 b/boards/x3550m5/acpi/SSDT3 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT4 b/boards/x3550m5/acpi/SSDT4 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT5 b/boards/x3550m5/acpi/SSDT5 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT6 b/boards/x3550m5/acpi/SSDT6 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/TCPA b/boards/x3550m5/acpi/TCPA deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/UEFI b/boards/x3550m5/acpi/UEFI deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/WDDT b/boards/x3550m5/acpi/WDDT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/ifd.bin b/boards/x3550m5/ifd.bin deleted file mode 100644 index e69de29b..00000000 diff --git a/cpu b/cpu new file mode 160000 index 00000000..3285a2d3 --- /dev/null +++ b/cpu @@ -0,0 +1 @@ +Subproject commit 3285a2d39b9d1a4bf678c954164f813a64a4651b diff --git a/dxe/Makefile b/dxe/Makefile index 0aabbec0..38987aae 100644 --- a/dxe/Makefile +++ b/dxe/Makefile @@ -39,7 +39,7 @@ FORCE: /usr/bin/printf '\x2E\x00' | dd of=$@ conv=notrunc bs=1 seek=150 status=none %.ffs: %.efi - ../bin/create-ffs \ + ../bin/create-ffs$(if $(USE_UTK),.utk,) \ -o $@ \ --type DRIVER \ --version 1.0 \ diff --git a/graveyard.md b/graveyard.md new file mode 100644 index 00000000..4eb3ff1d --- /dev/null +++ b/graveyard.md @@ -0,0 +1,39 @@ +# LinuxBoot Graveyard 🪦 + +We iteratively walk through various approaches to LinuxBoot's design. +Earlier attempts are documented below for reference. The code may still be +useful in general, though requires rework to fit into the current design. + +## Removals + +The following boards have been removed from the `mainboards/` directory: + +| Path | Deleting Commit | +| --------------------------------- | ---------------------------------------- | +| `aeeon/i11` | 0217e85b040a93a373932ab30e161f5b7efe1b9e | +| `aeeon/upxtreme` | 85b277da4b1f59c9101117e4192b02d8fe6fee60 | +| `amd/rome` | cf447e193a1ee39c01f526597400d029e70784de | +| `bytedance/g220a` | 8a48d3eabf07c29d1a1d8233671fc456808afa8b | +| `cubie/board` | 03ce8a4a0558b335de812af9e34f4f5b48265756 | +| `digitalloggers/atomicpi` | faa2b2bac902ada422479b81023816c8aea9ea77 | +| `hpe/dl360gen10` | 38655daa09f8e2bb95887a954e0231c1e1383076 | +| `intel/generic` | 36f3d42dade41f310676383b0b015a4ed1b85502 | +| `intel/hw` | ad41eb3e06a45360c8e47b4e69b8d64256c02c5a | +| `intel/minplatform` | 8460a4051cd2304727937c4c6b85af43b4eecbc2 | +| `intel/s2600` | 0a0fe3961711c8e2394753f72d99462509d1f335 | +| `lenovo/hr630` | bf0c59238dd5af734b604bb53a54579ba790a04b | +| `lenovo/sr630` | 35b0b81242b961b8f1019f29ca49e4d8e1ad934a | +| `lenovo/thinkpad` | 54be995b382bf97ee56334da05cb346a91b3e723 | +| `marvel/macchiatobin` | 09161d4f29529df3b95b01900e926ed37c8c0655 | +| `opentitanpilot/dresden` | d7cc8e21bdc0aa986239f0b7899faaedd59de208 | +| `pcengines/apu` | 89dcf5e79e9587b17124de45d0d869151c8cd0a5 | +| `pcengines/apu2` | c127d3c19f814b312b8b243f35e754d4c8f05ef1 | +| `qemu/arm64` | b215d5ce1d821033094a71227b3e7846036b8425 | +| `seeed/beaglev` | d4b9d4dcbb61c656009646d1097d85ab335f1976 | +| `slimboot` | 0dc8ae7c9fe7c2dc65ba60a77169750380b5e3e8 | +| `solidrun/honeycomblx2k` | 6825bff2474a8b18264c870524bf293f4a323fdb | +| `st/st32mp1517c` | dbaba8cdf9cf883d13418c5b9a127fc102d1e725 | +| `sunxi/nezha` | ddcd5e4e1fe266dbd98a06618ccaae9339426ce4 | +| `tianocore/ovmf` | 93c06bea540e6fed1c65bc884ceca5ecb002e48d | +| `tyan7106` | e49b38ec1fff220852be5a75f7745f7e981e543f | +| `walmart/robot` | a9901247ae86e1bae6fc560f75393a1f5e8b9ee6 | diff --git a/mainboards/Makefile b/mainboards/Makefile index 3b749741..c8fee15c 100644 --- a/mainboards/Makefile +++ b/mainboards/Makefile @@ -9,5 +9,5 @@ debian-packages: getmecleaner: go get -u github.com/u-root/u-root go get -u github.com/u-root/cpu/... - git clone git://github.com/corna/me_cleaner + git clone https://github.com/corna/me_cleaner @echo Now add $(PWD)/me_cleaner to PATH diff --git a/mainboards/Makefile.inc b/mainboards/Makefile.inc new file mode 100644 index 00000000..6f9975f3 --- /dev/null +++ b/mainboards/Makefile.inc @@ -0,0 +1,37 @@ +# Common makefile for all boards. +# All rules must be parameterized by kernel version, +# architecture, cross compiler, and so on. + +# These stanzas fetch code. +fetch: getkernel geturoot + +# This rule gets the kernel and sets up a default minimal config. +getkernel: + rm -rf linux + git clone --depth=1 -b $(LINUXVERSION) --single-branch https://github.com/torvalds/linux + (cd linux && make mrproper) + (cd linux && ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) make tinyconfig) + +geturoot: + rm -rf u-root cpu + git clone --depth 1 https://github.com/u-root/u-root + git clone --depth 1 https://github.com/u-root/cpu + rm -f go.* + go work init ./u-root + go work use ./cpu + +# These stanzas are for setting up services for netboot + +# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom +sshd-pxeserver: + echo Consider Disabling any system services ... + echo e.g. sudo systemctl stop tftpd-hpa.service + echo e.g. sudo systemctl stop isc-dhcp-server + sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) + +# Serve the combined cpu-kernel and cpu-initramfs image. +cpu-pxeserver: + echo Consider Disabling any system services ... + echo e.g. sudo systemctl stop tftpd-hpa.service + echo e.g. sudo systemctl stop isc-dhcp-server + sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) diff --git a/mainboards/README.md b/mainboards/README.md index 655ec1bd..63dc9b2f 100644 --- a/mainboards/README.md +++ b/mainboards/README.md @@ -3,4 +3,4 @@ linuxboot for various mainboards ## Latest Build Status -[![](http://github-actions.40ants.com/linuxboot/mainboards/matrix.svg)](https://github.com/linuxboot/mainboards) +[![](http://github-actions.40ants.com/linuxboot/linuxboot/matrix.svg)](https://github.com/linuxboot/linuxboot) diff --git a/mainboards/aeeon/up/Makefile b/mainboards/aeeon/up/Makefile index 0b0fe970..aa51baa9 100644 --- a/mainboards/aeeon/up/Makefile +++ b/mainboards/aeeon/up/Makefile @@ -1,35 +1,116 @@ +INITRAMFS:=initramfs.linux_amd64.cpio + default: build build: - echo fetch, uroot, flashkernel, or image.bin + echo Run 'make fetch' first, which prepares the mainline build environment. + echo Obtain the ROM image; download from the Internet or read from flash. + echo Then make other targets, starting with a u-root flavor, finally Linux. + echo When the new image is built, write it to flash. + +# Prepare + +fetch: getrom prepgows getfiano getkernel + +getkernel: + rm -rf linux + git clone --depth=1 https://github.com/linuxboot/linux + +getstablekernel: + wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.3.10.tar.xz + xzcat kernel.xz | tar x + mv linux-5.3.10 linux + +upgetkernel: + rm -rf linux + git clone --depth=1 https://github.com/emutex/ubilinux-kernel.git -b upboard-4.9 linux + +# Set up the Go workspace, including cpu. +# see https://github.com/u-root/u-root?tab=readme-ov-file#multi-module-workspace-builds +# NOTE: goanywhere is nice, but how would we combine cpud and u-root templates? +prepgows: + git clone --depth 1 https://github.com/u-root/u-root + git clone --depth 1 https://github.com/u-root/cpu + go work init ./u-root + go work use ./cpu + +getfiano: + go install github.com/linuxboot/fiano/cmds/utk@latest + +# initramfs + +alluroot: + cd u-root && go run . -o $(INITRAMFS) \ + all + +cpuuroot: + cd u-root && go run . -o $(INITRAMFS) \ + -defaultsh="" \ + -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub ../cpu/cmds/cpud + +# TODO: Should we use a template instead? Or define one in this repo? +# https://github.com/u-root/u-root/blob/main/.mkuimage.yaml +neturoot: + cd u-root && go run . -o $(INITRAMFS) \ + ./cmds/core/init \ + ./cmds/core/ls \ + ./cmds/core/ip \ + ./cmds/core/gosh \ + ./cmds/core/sshd \ + ./cmds/core/scp \ + ./cmds/boot/* + +uroot.lzma: + lzma -f -k ./u-root/$(INITRAMFS) + ls -l u-root/initramfs* + cp u-root/*lzma linux + +# Linux + +# FIXME: The current config does not include the initramfs. Should it? +bzImage: + cp linuxboot-linux.config linux/.config + (cd linux && make oldconfig && make -j32) + +stablebzImage: + echo "the config is from https://github.com/emutex/ubilinux-kernel/issues/2#issue-294853930" + cp ts.config.txt linux/.config + (cd linux && make oldconfig && make -j32) + +flashkernel: alluroot uroot.lzma bzImage + cp linux/arch/x86/boot/bzImage flashkernel + +netboot: neturoot uroot.lzma bzImage + cp linux/arch/x86/boot/bzImage kernel + +# ROM operations image.bin: - utk \ - -xzPath /usr/bin/xz \ + utk -xzPath /usr/bin/xz \ ROM.bin \ remove Nb.* \ remove IntelIsh.* \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ + remove Ip.* \ + remove Tcp.* \ + remove Usb.* \ + remove Udp.* \ + remove Dhcp.* \ + remove .np.* \ + remove .tftp.* \ + remove Http.* \ + remove .*Dns.* \ + remove Arp.* \ + remove .*NetworkStackSetupScreen.* \ + remove Iscsi.* \ + remove Scsi.* \ + remove Fat.* \ + remove Ahci.* \ + remove Partition.* \ + remove Sata.* \ + remove Disk.* \ + remove Whea.* \ + remove .*Pxe.* \ + remove Ata.* \ remove AmiSeri.* \ remove IntelGop.* \ remove Logo.* \ @@ -44,17 +125,16 @@ image.bin: remove Tcg.* \ remove Ish.* \ remove Setup \ - save image.bin + save image.bin utk image.bin table | guid2english | grep Free - echo \ - remove AmiTc.* \ + # FIXME: What is this? + echo remove AmiTc.* echo need 0x16b4a0 -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -netboot: netbooturoot bzImage - cp linux/arch/x86/boot/bzImage kernel +getrom: + echo you can put a wget here + echo and unxip it + echo and cp it to sr630.bin readrom: echo You need to get a ROM image from *somewhere* @@ -63,58 +143,3 @@ readrom: writerom: image.bin echo Here is where you would do the flashrom, e.g. echo sudo flashrom -p dediprog -w image.bin - -netbooturoot: - go run github.com/u-root/u-root -o linux/initramfs.linux_amd64.cpio -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp github.com/u-root/u-root/cmds/boot/* - -uroot.lzma: uroot - lzma -f -k initramfs.linux_amd64.cpio - -uroot: - go run github.com/u-root/u-root -o initramfs.linux_amd64.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - -alluroot: - go run github.com/u-root/u-root -o initramfs.linux_amd64.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - github.com/u-root/cpu/cmds/cpud \ - all - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp linuxboot-linux.config linux/.config - (cd linux && make oldconfig && make -j32) - -stablebzImage: - echo the config is from https://github.com/emutex/ubilinux-kernel/issues/2#issue-294853930 - cp ts.config.txt linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 https://github.com/linuxboot/linux - -getstablekernel: - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.3.10.tar.xz - xzcat kernel.xz | tar x - mv linux-5.3.10 linux - -upgetkernel: - rm -rf linux - git clone --depth=1 https://github.com/emutex/ubilinux-kernel.git -b upboard-4.9 linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to sr630.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - diff --git a/mainboards/aeeon/upxtreme/.gitignore b/mainboards/aeeon/upxtreme/.gitignore deleted file mode 100644 index 06162ec4..00000000 --- a/mainboards/aeeon/upxtreme/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -*.cpio -linux -*.gz -*kernel -pxelinux.cfg - diff --git a/mainboards/aeeon/upxtreme/Makefile b/mainboards/aeeon/upxtreme/Makefile deleted file mode 100644 index 192af4f9..00000000 --- a/mainboards/aeeon/upxtreme/Makefile +++ /dev/null @@ -1,272 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make flashpxeboot.bin -# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make flashpxeboot.bin -# cpu board flashrom -w flashpxeboot.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make flashpxeboot.bin -# flashrom -w flashpxeboot.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# flashpxeboot.bin produces a flash image which will pxeboot. -# cpu.bin produces a flash image that starts a cpu daemon. -# -# You can test the flash image kernel with qemu -# make flashtest - -default: sshdkernel flash cpukernel - -flash: flashpxeboot.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell flashkernel \ - save $@ - dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -cpu.bin: edk2.bin cpuflashkernel cpu.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell cpuflashkernel \ - save $@ - NOT GOING dd if=cpu.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -edk2.bin: dxeremove.bin - echo Note, this inserts the edk2 bds and shell - echo Only flash this image if you have an sf100. - echo It will not be able to boot anything. - utk \ - -xzPath /usr/bin/xz \ - $< \ - insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ - save $@ - -dxeremove.bin: image.bin - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - remove Ahci.* \ - remove AMITSE \ - remove AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - remove Bds \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - comment S3Save_do_not_remove_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment CrbTpm20Acpi \ - comment TcgSmm \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - save $@ - chmod a-w $@ - -hap.bin: tighten.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpuflashkernel: cpu.cpio.lzma cpuflash.config - cp cpuflash.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrdmem=0xff968000,%s"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/aeeon/upxtreme/class_key b/mainboards/aeeon/upxtreme/class_key deleted file mode 100644 index e21ff15c..00000000 --- a/mainboards/aeeon/upxtreme/class_key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA4zGICkjqlAPbYH0MZGN79zDJi88uC1pbc7cUcHQPp8R9iet0 -2Q594DiOsJhAc9ALDkVopAmDMew1OO9vwZXAkv00hPhnEHFSXJP31zaoWvQkbS/Z -/Ghl8gTTrPpJo+gJ3kCINwM1Z+IEQbjlE1EsvgKQEWQMCN32cD52F1L0UpkRaRzP -FKKxfMOKYCIIbFDbC1iAAsjuIOunlATy4OT1IbNBhkdX2Mx2kTchaJxry4LL+NDs -sIvfrtMJ/5gmIWKYnc4mXr2ozD4ZvCm7ooEnQshSgXXTpjl1AuEJvnaczr+ij66w -KUQhzK3Ukjo99b8xhih4pVlU661KAbezziyuFwIDAQABAoIBAFbib1s3jXYzj2b0 -C5Qss5DR+JHeFobC9GxpXIiw6ffH3harlBEaSKtCFdeVMjjYHBJGGwF4ndKuuZ/f -eYa35WCRMs+TS57vJ4c+Ey8buQCnk3KqNRwhNLN8gxMI2La1G2kCltUrBfaHagdU -VU6w4YJ86mmsMCoH8KH2USUUVVlsdbEgi6oQzPusw4le8a4shTX40YaBi90hv7XX -MshqZDscjM/mqXJVMq8fLJ6IDYeNVLNw3GhlHrlitO2Kheil7ptgrftYdTVqvScR -VNL4lFP6rq3N1BN0eisAwyB2A0mf/sCVc0fKA0qsNsODoVw9g7HBTjx6IFpbQ0Kh -derDBgkCgYEA+tAZftg8z2A+YFdA/fTGxLS82BCsIKJ1kaizDWcshcdZ6AQ2vNwT -JwxzOwiS/Tu1hqNHaE0tYV9cW8hKZC2CdsIquPEEewPNqnwzh6bhUiPmjlPF3Dea -pX2LHklCAOXLtnJqf1ZmbhhWbj/2TIITr/Iq5ae5rk32QAwsyvphswMCgYEA5+Rh -rMVYlXLSss/9rl+89ecrj0ZmXK5HNsheHdI+444wSgIoNP90Z7FHygDAWSV+RWsN -ibpEQxACGhtSgK6IU+9w35fXrEcTfTwyrC5lMxipS5BCkBTSNm9QfASaIZE4Oz+d -Z0ifjCCeG8ppZm/kVscP08BYNsuu3xSttDDi4l0CgYEAizhcDpbFGm9X8G4+ezkV -5DZW5LBMe0jybcnwqa3tfsyrUSiVobufPfuhMtGNlddA6d1UU8cTO4uNXr0M3hKM -6pLY2BOg4w+3Z7zNdaziQY//+Fzz5UtQIjBPup37bzgfHcTg7JHvBYmo4EXM16cU -eoO34AZ8AQ7xc5fOfVUCSjUCgYEA5Pn9fMVtYDz+UnTQkQOWKdZ3i8U/RFsOlMir -LpUxZi87/Yg9vX9VqSJDufKd/Cjqk49O0eWsi+/ds3uxLsGoegEgGpjr7QBN/UaY -3q39XcQHP0cWgwEcRYYLGjrNG0IzHUYGnjr22D5JATYQd4cbGJj9RuFR+eGMLllT -4G65Sj0CgYEAptcid0C4Dodg2LeA+E0dduec9uK4Qj4NkeoEcTw6fBInuP9vkIU7 -LyHDfXKVbCTHC79oc8oQ8OpeVvH999PU15g7MFAUdjrd2MCIEWcQ9WjJr0V3sVn4 -Nze3kVUWRsXhIoG0yWh6SHbc/HKFhKymtxvdPnbP4qajfcCGIKuIA2c= ------END RSA PRIVATE KEY----- diff --git a/mainboards/aeeon/upxtreme/class_key.pub b/mainboards/aeeon/upxtreme/class_key.pub deleted file mode 100644 index 5db12a16..00000000 --- a/mainboards/aeeon/upxtreme/class_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDjMYgKSOqUA9tgfQxkY3v3MMmLzy4LWltztxRwdA+nxH2J63TZDn3gOI6wmEBz0AsORWikCYMx7DU472/BlcCS/TSE+GcQcVJck/fXNqha9CRtL9n8aGXyBNOs+kmj6AneQIg3AzVn4gRBuOUTUSy+ApARZAwI3fZwPnYXUvRSmRFpHM8UorF8w4pgIghsUNsLWIACyO4g66eUBPLg5PUhs0GGR1fYzHaRNyFonGvLgsv40Oywi9+u0wn/mCYhYpidziZevajMPhm8KbuigSdCyFKBddOmOXUC4Qm+dpzOv6KPrrApRCHMrdSSOj31vzGGKHilWVTrrUoBt7POLK4X rminnich@xcpu diff --git a/mainboards/aeeon/upxtreme/classhostkey b/mainboards/aeeon/upxtreme/classhostkey deleted file mode 100644 index 9b696249..00000000 --- a/mainboards/aeeon/upxtreme/classhostkey +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA20e7SsGzrPyXMosKhgXMbvIPSe27ilhgcWw4I1NWsPMWhYEU -DnM66JiqImyN3tTiimwH7WewKxy4opGLbk2ohYvNQBALNXNr1cV7usAQREAIbafp -zZ6mO0gcWjrdsN31aTzMmEXO3dkS+wtEQzKBe/eFjlJbutHvEQkvYWtPeHTtBlVy -wcJEc59orcE+HNXrXLcPuJZF37Z5HkEMNGDWvAutHmnXc3C0cKd+bOdhpTx7DAaW -Fmj1GdL7WMPBQk1qKo4uE8lqOjTB5qwCGhWPtZFgD6QwYIKtZ/VFWMzUytc6ciRw -b5ob6+0+mbL3IFb1XZDbOC3gSbGPV4V0xZrVtwIDAQABAoIBABlIF+vykUishrIp -Hbl+Cafw+JpJconszpHFLGPGRAR6wmn6C9nupygSEeuOIH1Ehin3cqKIheMymIcF -yNGa2ocrKyrrrp8nA5POBQnvAvEbgN1Dss0mMXw8QCiXCOBPdu//NoeH5OXnFS0k -i2ZD+HHWg+t4y2Kqual5KaFNwgfdHJw9vmL/JFzzx2ZuVmIiAl7Pn9dNAu3JgaT2 -cHNEPxw04Pc0rsNd9NiMEuaijRPJhn2ZeDAdyo+RvrK6wI0ZiopG+3ZztKhJ65zT -7si2DjLpr8PMMgYPgMFy1YyoPKokYqnoSrLXMh2Lquy75145aysWNxVa640MNfp6 -vrFSCqECgYEA9T5GkrZ+7DCJfaPST7lqDBB7uON0DAYaSwUSxNVsu+UMAxSlXB25 -fYq3TzJzM+rJcDf5JPQLP2gD2BMYQIQZeHsgoV1UKVxZfJi3YpPCg3uNWxLTzut7 -TGawJBFULNoIrsxh0gLSsFP4RcDTWNUe31+3sD8SirrEz+GWjF9Nc0UCgYEA5OXt -uApDOx8q6XkjNwMNZZJdQ+VeDQh8Wg8mPDNKwg7VejI7idV87tn7LjAa4TcKemRi -WnLMeb98h0VZiWve2UwstiI5yiZon3f7jEJDop9jvg8/Cj2MgEc2hxKxZQxIN2k3 -sFfYMUtTr4Q2WT3Gm3aNERpgjhJjf2dFvMJulssCgYBHSUTmXJnkOe+dT8NQXUsQ -GrJ7+dG/tP5rlBvyjz8+FsQ5GQVAE3vZnDrQkI+gJb1MG1kWfsHOOoPziQlhp4Rn -2xKPFTvjke6JIzMbOmwuH/nk4UIkQZrjiG3m7gqTxwUDGnHMw/lOO/pM/FHy3nBM -6dvRJWRUYxnWe3JxdzpiKQKBgEzBLS2Bg3nXwbP4gu53f46Hve5+g0MrjUdFvTSC -npbkEoGfRoe5puMRBUE/sEPFCSZxcumRhS9uHnvdrWB/Y4LKIFQStf4rUvnmadtm -fPeTKwcYZbMxYGPDfW1dv057B9xM0/e1/TDKaY15cCAMrwSChFsv1SDO2b5nCuN4 -70xxAoGAbRDd2cxSICb+msM17yF1rGEzvcJRI1rjiTK71Gkt2VqfBPk1belz1vY8 -E/KkPMHwhWEMSuCrXnaxYrLZg4cvtbYy7tC+wgn1nXwfON8Cpmm74s0O6ufeE7dh -S4Bsitze0ougzTMGLQO/9M7He/fPqjM4DIi+PvfpAl/ZUXdD/48= ------END RSA PRIVATE KEY----- diff --git a/mainboards/aeeon/upxtreme/classhostkey.pub b/mainboards/aeeon/upxtreme/classhostkey.pub deleted file mode 100644 index 5c61a524..00000000 --- a/mainboards/aeeon/upxtreme/classhostkey.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDbR7tKwbOs/JcyiwqGBcxu8g9J7buKWGBxbDgjU1aw8xaFgRQOczromKoibI3e1OKKbAftZ7ArHLiikYtuTaiFi81AEAs1c2vVxXu6wBBEQAhtp+nNnqY7SBxaOt2w3fVpPMyYRc7d2RL7C0RDMoF794WOUlu60e8RCS9ha094dO0GVXLBwkRzn2itwT4c1etctw+4lkXftnkeQQw0YNa8C60eaddzcLRwp35s52GlPHsMBpYWaPUZ0vtYw8FCTWoqji4TyWo6NMHmrAIaFY+1kWAPpDBggq1n9UVYzNTK1zpyJHBvmhvr7T6ZsvcgVvVdkNs4LeBJsY9XhXTFmtW3 rminnich@xcpu diff --git a/mainboards/aeeon/upxtreme/cpu.config b/mainboards/aeeon/upxtreme/cpu.config deleted file mode 100644 index cf830d38..00000000 --- a/mainboards/aeeon/upxtreme/cpu.config +++ /dev/null @@ -1,2978 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -CONFIG_FB_VGA16=y -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_VGASTATE=y - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PLATFORM is not set -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_TIFM_SD is not set -# CONFIG_MMC_CB710 is not set -# CONFIG_MMC_VIA_SDMMC is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_TOSHIBA_PCI is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/upxtreme/flash.config b/mainboards/aeeon/upxtreme/flash.config deleted file mode 100644 index a0e1476a..00000000 --- a/mainboards/aeeon/upxtreme/flash.config +++ /dev/null @@ -1,2080 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/upxtreme/sshd.config b/mainboards/aeeon/upxtreme/sshd.config deleted file mode 100644 index 6f0aa188..00000000 --- a/mainboards/aeeon/upxtreme/sshd.config +++ /dev/null @@ -1,2718 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/amd/rome/5.5-rc3.config b/mainboards/amd/rome/5.5-rc3.config deleted file mode 100644 index 5bef512f..00000000 --- a/mainboards/amd/rome/5.5-rc3.config +++ /dev/null @@ -1,1937 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.6.0-rc6 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrd=0xff968000,2482781" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -CONFIG_EFI_DISABLE_PCI_DMA=y -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -# CONFIG_UNIX98_PTYS is not set -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/amd/rome/Makefile b/mainboards/amd/rome/Makefile deleted file mode 100644 index c9a7ebb7..00000000 --- a/mainboards/amd/rome/Makefile +++ /dev/null @@ -1,484 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -# sshdkernel and cpukernel are very similar, -# so doing builds in this order minimizes kernel -# change between them. -default: flash sshdkernel cpukernel - -flash: tiny.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -tiny.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 FullShell flashkernel \ - save $@ - echo DO NOT \ - dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=2560 conv=notrunc - -dxeremove.bin: image.bin Makefile - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - remove Ahci.* \ - remove AMITSE \ - remove AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove Shell_Full \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - remove DxeIpm.* \ - remove .*Tcg.* \ - remove NvmeInt13 \ - remove Aint13 \ - remove LegacyRegion \ - remove xGbEI2cMasterDxe \ - remove NvmeSmm \ - remove KbcEmul \ - remove IdeBusBoard \ - remove Setup \ - remove SerialMuxControl \ - remove BmcLanConfig \ - remove SecureBootDXE \ - remove SmmHddSecurity \ - remove HttpBootDxe \ - remove HttpDxe \ - remove DnsDxe \ - remove HttpUtilitiesDxe \ - remove TlsDxe \ - remove CsmBlockIo \ - remove CsmVideo \ - comment testing \ - comment huashan_shock_and_awe_undo_later \ - remove FchHuashanMultiFchSmm \ - remove FchHuashanSmmInit \ - remove FchHuashanMultiFchDxe \ - comment FchHuashanDxe \ - comment end_huashan_shock_and_awe \ - comment misc_shock_and_awe \ - comment end_misc_shock_and_awe \ - comment debug_shock_and_awe \ - remove DebugPortTableDxe \ - remove AmdIdsDebugPrintDxe \ - comment end_debug_shock_and_awe \ - comment config_shock_and_awe \ - remove AmdFwConfigSmmSsp \ - remove TlsAuthConfigDxe \ - remove AmdFwConfigDxe \ - comment end_config_shock_and_awe \ - comment smm_shock_and_awe \ - comment remove_all_smm_it_warm_resets_continuously \ - comment StatusCodeSmm \ - comment RuntimeSmm \ - comment SmmPciRbIo \ - comment LegacySmmSredir \ - comment SmmS3SaveState \ - comment SmmBmcElog \ - comment SmmIpmiBmcInitialize \ - comment CpuSmm \ - remove AmdCpmInitSmm \ - comment AmdPlatformJedecNvdimmSmm \ - comment AmdHotPlugSspSmm \ - remove AmdPlatformRasSspSmm \ - remove AmdPlatformRasZpSmm \ - comment AmdSpiLockSmm \ - remove AmdCpmGpioInitSmm \ - comment BctBaseSmmSSP \ - remove AmdRasSspSmm \ - comment AmdSmmCommunication \ - comment FchSmmDispatcher \ - comment AmdFabricSspSmm \ - comment AmdCcxVhSmm \ - comment AmdPspSmmV2Ssp \ - comment AmdPspP2CmboxV2SspSmmBuffer \ - comment AmdApcbSmmV3 \ - comment AmdMemPprSmmDriverSsp \ - comment PiSmmCommunicationSmm \ - comment SmmChildDispatcher2 \ - comment SbRunSmm \ - comment SmmLockBox \ - comment CpuIo2Smm \ - comment NvramSmm \ - comment FlashDriverSmm \ - comment PiSmmCore \ - comment AmdSmmControl \ - comment PiSmmIpl \ - comment SmBusSmm \ - comment TcgSmm \ - comment end_smm_shock_and_awe \ - comment tpm_shock_and_awe \ - remove TpmClearOnRollbackSmm \ - remove Tpm20Acpi \ - remove Tpm20PlatformDxe \ - remove CrbTpm20Acpi \ - remove Tpm20PlatformDxe \ - remove TpmSmbiosDxe \ - remove end_tpm_shock_and_awe \ - comment smbios_shock_and_awe \ - remove SmmSmbiosElog \ - remove Smbios \ - remove SmbiosDmiEdit \ - remove SmbiosElog \ - remove SmbiosBoard \ - remove SmbiosElogSetupScreen \ - remove AmdSmbiosDxe \ - remove AmdMemSmbiosV2RvDxe \ - remove CpuSmbiosDriver \ - comment end_smbios_shock_and_awe \ - comment S3Save_do_not_comment_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment RomLayoutDxe \ - comment DxeCore \ - comment DataHubDxe \ - comment DevicePathDxe \ - comment EnglishDxe \ - comment HiiDatabase \ - comment SecurityStubDxe \ - comment CpuIo2Dxe \ - comment CpuDxe \ - comment NbDxe \ - comment SbDxe \ - comment AmdMemSspSp3Dxe \ - comment AmdMemRestoreDxe \ - comment AmdApcbDxeV3 \ - comment AmdPspDxeV2Ssp \ - comment AmdHstiV2 \ - comment ApobSspDxe \ - comment AmdCcxVhDxe \ - comment AmdFabricSspDxe \ - comment AmdSocSp3RmDxe \ - comment AmdErrorLogDxe \ - comment AmdNbioAlibDxe \ - comment AmdNbioBaseSspDxe \ - comment SmuV11Dxe \ - comment AmdNbioPcieDxe \ - remove AmdNbioIOMMUDxe \ - comment FchSmbusDxe \ - remove AmdLegacyInterrupt \ - comment AmdAcpiDxe \ - comment AmdVersionDxe \ - remove AmdRasSspApeiDxe \ - remove AmdRasSspDxe \ - comment JedecNvdimmDxe \ - comment CbsSetupDxeSSP \ - comment CbsBaseDxeSSP \ - comment AmdPbsSetupDxe \ - remove RasOemDimmMap \ - comment ServerHotplugDxe \ - comment Pca9535aDxe \ - comment Pca9545aDxe \ - comment Sff8472Dxe \ - comment SlinkManager \ - comment SlinkEndpointDriver \ - comment AmdBoardIdDxe \ - remove AmdCpmGpioInitDxe \ - comment AmdSpiLockDxe \ - comment AmdI2cMasterDxe \ - remove AmdCpmPcieInitDxe \ - comment ApicInfoDataDxe \ - remove AmdPlatformRasZpDxe \ - remove AmdPlatformRasSspDxe \ - remove AmdCpmInitDxe \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment AcpiS3SaveDxe \ - comment LegacySredir \ - comment OA3 \ - comment PciRootBridge \ - comment PciDynamicSetup \ - comment PciDxeInit \ - comment ExportHiiDb \ - comment DpcDxe \ - comment CsmDxe \ - comment EventLogsSetupPage \ - comment HardwareSignatureEntry \ - comment HddSecurity \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeDynamicSetup \ - comment AmiBoardInfo2 \ - comment AmiSerialUart0 \ - comment AmiSerialUart1 \ - comment OpalSecurity \ - comment CsmRt32 \ - comment RsdpPlus \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment PspPlatform \ - comment PspDxe \ - comment AcpiUpdateCpuInfo \ - comment CheckCrbVsRom \ - comment RuntimeDxe \ - comment CpuIoDxe \ - comment SbRun \ - comment Cf9Reset \ - comment BmcElog \ - comment SecFlashUpdDXE \ - comment SmiFlashDxe \ - comment PCIePTCPkg \ - comment ConSplitter \ - comment GraphicsConsole \ - comment SlinkRootBridgeDriver \ - remove IdeBusSrc \ - remove PciBus \ - remove PlatformToDriver \ - remove TerminalSrc \ - remove SerialIo \ - remove Nvme \ - comment ResetSmi \ - comment PeriodicSmiControl \ - remove PowerButton \ - comment AcpiModeEnable \ - comment AmdPspP2CmboxV2Ssp \ - remove JedecNvdimm \ - remove BiosCfgTool \ - remove CryptoSMM \ - remove BmcAcpi \ - comment OA3_SMM \ - comment SmiVariable \ - comment Ofbd \ - remove SecSMIFlash \ - remove SmiFlash \ - comment StatusCodeDxe \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - remove SbCmos \ - remove SmBusDxe \ - remove DxeSelStatusCode \ - comment DxeFrb \ - remove CmosDxe \ - comment CrbSpiOpCode \ - comment tested_fails_if_removed \ - comment CapsuleRuntimeDxe \ - comment Bds \ - comment needed_for_linuxboot_dont_remove \ - comment FullShell \ - save $@ - -sshdkernel: sshd.cpio.lzma sshd-linux.config - cp sshd-linux.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu-linux.config - cp cpu-linux.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - u-root -o $@ \ - -uinitcmd=/bbin/console \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/boot/boot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/io \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - github.com/u-root/u-root/cmds/exp/console \ - -oflashinitramfs.cpio: Makefile - u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="rush" \ - github.com/u-root/u-root/cmds/exp/rush \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/io \ - github.com/u-root/u-root/cmds/core/cat - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flashkernel.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - echo TODO get 5.10 - git clone --depth=1 -b v5.8 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/amd/rome/class_key b/mainboards/amd/rome/class_key deleted file mode 100644 index e21ff15c..00000000 --- a/mainboards/amd/rome/class_key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA4zGICkjqlAPbYH0MZGN79zDJi88uC1pbc7cUcHQPp8R9iet0 -2Q594DiOsJhAc9ALDkVopAmDMew1OO9vwZXAkv00hPhnEHFSXJP31zaoWvQkbS/Z -/Ghl8gTTrPpJo+gJ3kCINwM1Z+IEQbjlE1EsvgKQEWQMCN32cD52F1L0UpkRaRzP -FKKxfMOKYCIIbFDbC1iAAsjuIOunlATy4OT1IbNBhkdX2Mx2kTchaJxry4LL+NDs -sIvfrtMJ/5gmIWKYnc4mXr2ozD4ZvCm7ooEnQshSgXXTpjl1AuEJvnaczr+ij66w -KUQhzK3Ukjo99b8xhih4pVlU661KAbezziyuFwIDAQABAoIBAFbib1s3jXYzj2b0 -C5Qss5DR+JHeFobC9GxpXIiw6ffH3harlBEaSKtCFdeVMjjYHBJGGwF4ndKuuZ/f -eYa35WCRMs+TS57vJ4c+Ey8buQCnk3KqNRwhNLN8gxMI2La1G2kCltUrBfaHagdU -VU6w4YJ86mmsMCoH8KH2USUUVVlsdbEgi6oQzPusw4le8a4shTX40YaBi90hv7XX -MshqZDscjM/mqXJVMq8fLJ6IDYeNVLNw3GhlHrlitO2Kheil7ptgrftYdTVqvScR -VNL4lFP6rq3N1BN0eisAwyB2A0mf/sCVc0fKA0qsNsODoVw9g7HBTjx6IFpbQ0Kh -derDBgkCgYEA+tAZftg8z2A+YFdA/fTGxLS82BCsIKJ1kaizDWcshcdZ6AQ2vNwT -JwxzOwiS/Tu1hqNHaE0tYV9cW8hKZC2CdsIquPEEewPNqnwzh6bhUiPmjlPF3Dea -pX2LHklCAOXLtnJqf1ZmbhhWbj/2TIITr/Iq5ae5rk32QAwsyvphswMCgYEA5+Rh -rMVYlXLSss/9rl+89ecrj0ZmXK5HNsheHdI+444wSgIoNP90Z7FHygDAWSV+RWsN -ibpEQxACGhtSgK6IU+9w35fXrEcTfTwyrC5lMxipS5BCkBTSNm9QfASaIZE4Oz+d -Z0ifjCCeG8ppZm/kVscP08BYNsuu3xSttDDi4l0CgYEAizhcDpbFGm9X8G4+ezkV -5DZW5LBMe0jybcnwqa3tfsyrUSiVobufPfuhMtGNlddA6d1UU8cTO4uNXr0M3hKM -6pLY2BOg4w+3Z7zNdaziQY//+Fzz5UtQIjBPup37bzgfHcTg7JHvBYmo4EXM16cU -eoO34AZ8AQ7xc5fOfVUCSjUCgYEA5Pn9fMVtYDz+UnTQkQOWKdZ3i8U/RFsOlMir -LpUxZi87/Yg9vX9VqSJDufKd/Cjqk49O0eWsi+/ds3uxLsGoegEgGpjr7QBN/UaY -3q39XcQHP0cWgwEcRYYLGjrNG0IzHUYGnjr22D5JATYQd4cbGJj9RuFR+eGMLllT -4G65Sj0CgYEAptcid0C4Dodg2LeA+E0dduec9uK4Qj4NkeoEcTw6fBInuP9vkIU7 -LyHDfXKVbCTHC79oc8oQ8OpeVvH999PU15g7MFAUdjrd2MCIEWcQ9WjJr0V3sVn4 -Nze3kVUWRsXhIoG0yWh6SHbc/HKFhKymtxvdPnbP4qajfcCGIKuIA2c= ------END RSA PRIVATE KEY----- diff --git a/mainboards/amd/rome/class_key.pub b/mainboards/amd/rome/class_key.pub deleted file mode 100644 index 5db12a16..00000000 --- a/mainboards/amd/rome/class_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDjMYgKSOqUA9tgfQxkY3v3MMmLzy4LWltztxRwdA+nxH2J63TZDn3gOI6wmEBz0AsORWikCYMx7DU472/BlcCS/TSE+GcQcVJck/fXNqha9CRtL9n8aGXyBNOs+kmj6AneQIg3AzVn4gRBuOUTUSy+ApARZAwI3fZwPnYXUvRSmRFpHM8UorF8w4pgIghsUNsLWIACyO4g66eUBPLg5PUhs0GGR1fYzHaRNyFonGvLgsv40Oywi9+u0wn/mCYhYpidziZevajMPhm8KbuigSdCyFKBddOmOXUC4Qm+dpzOv6KPrrApRCHMrdSSOj31vzGGKHilWVTrrUoBt7POLK4X rminnich@xcpu diff --git a/mainboards/amd/rome/classhostkey b/mainboards/amd/rome/classhostkey deleted file mode 100644 index 9b696249..00000000 --- a/mainboards/amd/rome/classhostkey +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA20e7SsGzrPyXMosKhgXMbvIPSe27ilhgcWw4I1NWsPMWhYEU -DnM66JiqImyN3tTiimwH7WewKxy4opGLbk2ohYvNQBALNXNr1cV7usAQREAIbafp -zZ6mO0gcWjrdsN31aTzMmEXO3dkS+wtEQzKBe/eFjlJbutHvEQkvYWtPeHTtBlVy -wcJEc59orcE+HNXrXLcPuJZF37Z5HkEMNGDWvAutHmnXc3C0cKd+bOdhpTx7DAaW -Fmj1GdL7WMPBQk1qKo4uE8lqOjTB5qwCGhWPtZFgD6QwYIKtZ/VFWMzUytc6ciRw -b5ob6+0+mbL3IFb1XZDbOC3gSbGPV4V0xZrVtwIDAQABAoIBABlIF+vykUishrIp -Hbl+Cafw+JpJconszpHFLGPGRAR6wmn6C9nupygSEeuOIH1Ehin3cqKIheMymIcF -yNGa2ocrKyrrrp8nA5POBQnvAvEbgN1Dss0mMXw8QCiXCOBPdu//NoeH5OXnFS0k -i2ZD+HHWg+t4y2Kqual5KaFNwgfdHJw9vmL/JFzzx2ZuVmIiAl7Pn9dNAu3JgaT2 -cHNEPxw04Pc0rsNd9NiMEuaijRPJhn2ZeDAdyo+RvrK6wI0ZiopG+3ZztKhJ65zT -7si2DjLpr8PMMgYPgMFy1YyoPKokYqnoSrLXMh2Lquy75145aysWNxVa640MNfp6 -vrFSCqECgYEA9T5GkrZ+7DCJfaPST7lqDBB7uON0DAYaSwUSxNVsu+UMAxSlXB25 -fYq3TzJzM+rJcDf5JPQLP2gD2BMYQIQZeHsgoV1UKVxZfJi3YpPCg3uNWxLTzut7 -TGawJBFULNoIrsxh0gLSsFP4RcDTWNUe31+3sD8SirrEz+GWjF9Nc0UCgYEA5OXt -uApDOx8q6XkjNwMNZZJdQ+VeDQh8Wg8mPDNKwg7VejI7idV87tn7LjAa4TcKemRi -WnLMeb98h0VZiWve2UwstiI5yiZon3f7jEJDop9jvg8/Cj2MgEc2hxKxZQxIN2k3 -sFfYMUtTr4Q2WT3Gm3aNERpgjhJjf2dFvMJulssCgYBHSUTmXJnkOe+dT8NQXUsQ -GrJ7+dG/tP5rlBvyjz8+FsQ5GQVAE3vZnDrQkI+gJb1MG1kWfsHOOoPziQlhp4Rn -2xKPFTvjke6JIzMbOmwuH/nk4UIkQZrjiG3m7gqTxwUDGnHMw/lOO/pM/FHy3nBM -6dvRJWRUYxnWe3JxdzpiKQKBgEzBLS2Bg3nXwbP4gu53f46Hve5+g0MrjUdFvTSC -npbkEoGfRoe5puMRBUE/sEPFCSZxcumRhS9uHnvdrWB/Y4LKIFQStf4rUvnmadtm -fPeTKwcYZbMxYGPDfW1dv057B9xM0/e1/TDKaY15cCAMrwSChFsv1SDO2b5nCuN4 -70xxAoGAbRDd2cxSICb+msM17yF1rGEzvcJRI1rjiTK71Gkt2VqfBPk1belz1vY8 -E/KkPMHwhWEMSuCrXnaxYrLZg4cvtbYy7tC+wgn1nXwfON8Cpmm74s0O6ufeE7dh -S4Bsitze0ougzTMGLQO/9M7He/fPqjM4DIi+PvfpAl/ZUXdD/48= ------END RSA PRIVATE KEY----- diff --git a/mainboards/amd/rome/classhostkey.pub b/mainboards/amd/rome/classhostkey.pub deleted file mode 100644 index 5c61a524..00000000 --- a/mainboards/amd/rome/classhostkey.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDbR7tKwbOs/JcyiwqGBcxu8g9J7buKWGBxbDgjU1aw8xaFgRQOczromKoibI3e1OKKbAftZ7ArHLiikYtuTaiFi81AEAs1c2vVxXu6wBBEQAhtp+nNnqY7SBxaOt2w3fVpPMyYRc7d2RL7C0RDMoF794WOUlu60e8RCS9ha094dO0GVXLBwkRzn2itwT4c1etctw+4lkXftnkeQQw0YNa8C60eaddzcLRwp35s52GlPHsMBpYWaPUZ0vtYw8FCTWoqji4TyWo6NMHmrAIaFY+1kWAPpDBggq1n9UVYzNTK1zpyJHBvmhvr7T6ZsvcgVvVdkNs4LeBJsY9XhXTFmtW3 rminnich@xcpu diff --git a/mainboards/amd/rome/cpu-linux.config b/mainboards/amd/rome/cpu-linux.config deleted file mode 100644 index 7297ece2..00000000 --- a/mainboards/amd/rome/cpu-linux.config +++ /dev/null @@ -1,2260 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -CONFIG_MICROCODE_AMD=y -# CONFIG_MICROCODE_OLD_INTERFACE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="pci=earlydump,nobios,assign-busses,realloc,pcie_scan_all noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200,keep debug_level=0x2 acpi.debug_layer=0xFFFFFFFF acpi=strict acpi_force_table_verification hpet=verbose 8250.force_polling=1 8250.buggy_uart=1 memmap=256M$0xe0000000" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AX88796B_PHY=y -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -CONFIG_USB_RTL8150=y -CONFIG_USB_RTL8152=y -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -# CONFIG_USB_NET_CDC_NCM is not set -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -# CONFIG_USB_NET_NET1080 is not set -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -# CONFIG_USB_NET_CDC_SUBSET is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -CONFIG_USB_DYNAMIC_MINORS=y -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/amd/rome/flash.config b/mainboards/amd/rome/flash.config deleted file mode 100644 index a0e1476a..00000000 --- a/mainboards/amd/rome/flash.config +++ /dev/null @@ -1,2080 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/amd/rome/flashkernel.config b/mainboards/amd/rome/flashkernel.config deleted file mode 100644 index e42a050b..00000000 --- a/mainboards/amd/rome/flashkernel.config +++ /dev/null @@ -1,2286 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="pci=realloc noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 console=tty0" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -# CONFIG_USB_NET_CDC_NCM is not set -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -# CONFIG_USB_NET_NET1080 is not set -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -# CONFIG_USB_NET_CDC_SUBSET is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -CONFIG_USB_DYNAMIC_MINORS=y -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/amd/rome/sshd-linux.config b/mainboards/amd/rome/sshd-linux.config deleted file mode 100644 index 94a64923..00000000 --- a/mainboards/amd/rome/sshd-linux.config +++ /dev/null @@ -1,2624 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch b/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch new file mode 100644 index 00000000..09a90a10 --- /dev/null +++ b/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch @@ -0,0 +1,32 @@ +From faeb3868d9b8b8fd693134e5f1e17facaf06f127 Mon Sep 17 00:00:00 2001 +From: Tam Chi Nguyen +Date: Wed, 17 Nov 2021 11:18:29 +0700 +Subject: [PATCH] efistub: Workaround Linuxboot for Ubuntu 20.04 + +Apply: Ubuntu kernel patch: "arm64: Allow locking down the kernel under EFI secure boot" + https://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/focal/commit/drivers/firmware/efi?id=36ca37871ad2a7d208636725c9465695b2780fee + +Signed-off-by: Tam Chi Nguyen +--- + drivers/firmware/efi/libstub/fdt.c | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/drivers/firmware/efi/libstub/fdt.c b/drivers/firmware/efi/libstub/fdt.c +index 46cffac7a..738bd14a9 100644 +--- a/drivers/firmware/efi/libstub/fdt.c ++++ b/drivers/firmware/efi/libstub/fdt.c +@@ -136,6 +136,11 @@ static efi_status_t update_fdt(void *orig_fdt, unsigned long orig_fdt_size, + if (status) + goto fdt_set_fail; + ++ fdt_val32 = cpu_to_fdt32(efi_get_secureboot()); ++ status = fdt_setprop_var(fdt, node, "linux,uefi-secure-boot", fdt_val32); ++ if (status) ++ goto fdt_set_fail; ++ + if (IS_ENABLED(CONFIG_RANDOMIZE_BASE) && !efi_nokaslr) { + efi_status_t efi_status; + +-- +2.17.1 + diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index 0fa75de8..03bda06c 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -1,3 +1,8 @@ +ARCH=arm64 +CROSS_COMPILE=aarch64-linux-gnu- +LINUXVERSION=v5.15 + +include ../../Makefile.inc # Makefile for Ampere Jade. # This is only partially done. It is derived from other ARM # systems. @@ -21,13 +26,26 @@ flashinitramfs.cpio.lzma: flashinitramfs.cpio lzma -f -k $< flashinitramfs.cpio: Makefile - GOARCH=arm64 u-root -o $@ -build=bb all github.com/u-root/u-root/cmds/exp/acpicat github.com/u-root/u-root/cmds/exp/acpigrep github.com/u-root/u-root/cmds/exp/disk_unlock github.com/u-root/u-root/cmds/exp/dmidecode github.com/u-root/u-root/cmds/exp/ipmidump + cd u-root && go build . && GOARCH=arm64 ./u-root -uinitcmd="boot" -o $@ \ + ./cmds/core/* \ + ./cmds/boot/* \ + ./cmds/exp/systemboot \ + ./cmds/exp/localboot \ + ./cmds/exp/fbnetboot \ + ./cmds/exp/dmidecode \ + ./cmds/exp/acpicat \ + ./cmds/exp/acpigrep \ + ./cmds/exp/disk_unlock \ + ./cmds/exp/dmidecode \ + ./cmds/exp/ipmidump \ + ../cpu/cmds/cpud + cp u-root/flashinitramfs.cpio . # this target builds an initramfs with only one program, the cpu server. # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line cpu.cpio.lzma: Makefile - GOARCH=arm64 go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ + GO111MODULE=off GOARCH=arm64 go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ -defaultsh="" \ github.com/u-root/cpu/cmds/cpud lzma -f -k cpu.cpio @@ -37,7 +55,7 @@ cpu.cpio.lzma: Makefile # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line sshd.cpio.lzma: Makefile - GOARCH=arm64 go run github.com/u-root/u-root -o sshd.cpio -build=bb \ + GO111MODULE=off GOARCH=arm64 go run github.com/u-root/u-root -o sshd.cpio -build=bb \ -uinitcmd=/bbin/sshd \ -files class_key.pub:authorized_keys \ -files classhostkey:id_rsa \ @@ -53,38 +71,10 @@ sshd.cpio.lzma: Makefile flashkernel: flash.config flashinitramfs.cpio.lzma Makefile cp $< linux/.config - (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make oldconfig && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make -j32) + (cd linux && git apply ../0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch) + (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make olddefconfig && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make -j32) cp linux/arch/arm64/boot/Image $@ testflashkernel: flashkernel qemu-system-aarch64 -machine virt -cpu cortex-a57 -kernel flashkernel -nographic -initrd flashinitramfs.cpio.lzma -append "console=ttyAMA0,115200 keep_bootcon" -# These stanzas fetch code. -fetch: getkernel geturoot - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.7 --single-branch https://github.com/torvalds/linux - (cd linux && make mrproper) - (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make tinyconfig) - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/ampere/jade/README.md b/mainboards/ampere/jade/README.md new file mode 100644 index 00000000..1c2ba05f --- /dev/null +++ b/mainboards/ampere/jade/README.md @@ -0,0 +1,414 @@ +# Ampere Mt Jade (WiWynn) LinuxBoot Altra / Altra Max + +# LinuxBoot + Plan9 via u-root/cpu + +## Documentation + +LinuxBoot [documention](https://book.linuxboot.org/cpu/) of the Plan9 cpu/cpud commands implemented in [u-root/cpu](https://github.com/u-root/cpu) + +# Plan9 u-root/cpu Benefits + +This tool allows you to have a very small kernel in SPI-NOR and use ssh with 9P remote filesystems on a remote Arm64 system to have full access to any Arm64 tools without installing them locally. In the example below any tool that is installed on the Raspberry Pi will be availble to Mt Jade once the cpu to cpud connection is made. + +- Full access to remote filesystem +- Maintain minimal SPI-NOR usage +- Firmware and OS bringup +- Baseboard bring-up and debugging +- Security testing e.g. [chipsec](https://github.com/chipsec/chipsec) +- Factory diagnostics and manufacturing flow + +## LinuxBoot Docker Example + +There is an example project that will build LinuxBoot with 9P enabled and systemboot as the default for Mt Jade [here](https://gitlab.com/fryard/Ampere-Samples/-/tree/main/examples/edk2) + +## Plan9 Client cpu + +- An aarch64/Arm64 system (*e.g. Mt Jade, Cloud instance, QEMU, Raspberri Pi, etc.*) + + Option **A**: [Raspberry Pi 3 UEFI Firmware Images](https://github.com/pftf/RPi3) forked from [here](https://github.com/tianocore/edk2-platforms/tree/master/Platform/RaspberryPi/RPi3) with OS installation instructions [here](https://pete.akeo.ie/2019/07/installing-debian-arm64-on-raspberry-pi.html) + + Option **B**: Use one of the [prebuilt RasPiOS Arm64 images](https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2022-04-07/) This is the option used for these examples. + + You'll need to copy or create ssh keys once the OS is up. + +- Install Golang and uroot/cpu for Arm64 + + Create a directory to install Golang for Arm64. + + `sudo su && mkdir -p /usr/local` + + The package manager version is likely outdated and some compatibility things changed around version 1.17 so wget is the best way to install for now. + + `cd /usr/local/ && wget -q -O - https://go.dev/dl/go1.17.4.linux-arm64.tar.gz | tar -xzi` + + Set your GOPATH when you login. + + `echo "export GOPATH=/home/pi/go" >> ~/.bashrc` + + This is an older Golang problem but shouldn't hurt for new installations. + + `echo "export GO111MODULE=off" >> ~/.bashrc` + + Update your PATH to include Golang and GOPATH. + + `echo "export PATH=/usr/local/go/bin:$GOPATH/bin:$PATH" >> ~/.bashrc` + + Logout and login again to reread your .bashrc to get the GO variables + + Create your GOPATH where u-root/cpu and others will be installed. + + `mkdir $GOPATH` + + Install the u-root/cpu package. + + `go get -u github.com/u-root/cpu/...` + +- SSH client private key (.ssh/identity) + + If you want cpu to use defaults then you need to copy your ssh key to ~/.ssh/identity. If you'd rather specify the key then use the `-key string` option when starting cpu. + + `cat ~/.ssh/id_rsa > ~/.ssh/identity` + +- Testing the client + + After completing the steps for the cpud server below you can test a simple command to return the date. If you add dbg9p to the cpu command _**cpu -dbg9p 192.168.0.192 date**_ you'll see logs of debug output. + + `cpu 192.168.0.192 date` + +___ +CLIENT +___ + + ``` + 1970/01/01 00:02:56 + CPUD:Args [cpud -d -remote -bin cpud -port9p 46593 date] pid 692 *runasinit false *remote true + 1970/01/01 00:02:56 + CPUD:Not server package: Running as remote: args ["date"], port9p 46593 + 1970/01/01 00:02:56 CPUD:namespace is "/lib:/lib64:/usr:/bin:/etc:/home" + 1970/01/01 00:02:56 CPUD:Dial 127.0.0.1:46593 + 1970/01/01 00:02:56 CPUD:Connected: write nonce 1b8dc12cfb4831fac97961fa55bcaf39 + 1970/01/01 00:02:56 CPUD:Wrote the nonce + 1970/01/01 00:02:56 CPUD:fd is 10 + 1970/01/01 00:02:56 CPUD: mount 127.0.0.1 on /tmp/cpu 9p 0x6 version=9p2000.L,trans=fd,rfdno=10,wfdno=10,uname=pi,debug=0,msize=1048576 + 1970/01/01 00:02:56 CPUD: mount done + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/lib over /lib + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/lib on /lib + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/lib64 over /lib64 + 1970/01/01 00:02:56 CPUD:Warning: mounting /tmp/cpu/lib64 on /lib64 failed: no such file or directory + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/usr over /usr + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/usr on /usr + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/bin over /bin + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/bin on /bin + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/etc over /etc + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/etc on /etc + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/home over /home + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/home on /home + 1970/01/01 00:02:56 CPUD: bind mounts done + 1970/01/01 00:02:56 CPUD:dropPrives: uid is 0 + 1970/01/01 00:02:56 CPUD:dropPrivs: not dropping privs + 1970/01/01 00:02:56 CPUD:runRemote: command is "date" + ``` + +``` +Wed 31 Dec 1969 06:02:56 PM CST +``` + +``` +1970/01/01 00:02:56 CPUD:Run /usr/bin/date returns +1970/01/01 00:02:56 CPUD: ignoring err +``` + +Establish an ssh connection to Mt Jade running cpud from the Raspberry Pi using cpu. + +`pi@rpi3debug:~ $ cpu 192.168.0.192` + +``` +1970/01/01 00:11:43 CPUD:runRemote: command is "/bin/bash" +``` + +Run any command available on the Raspberry Pi but executing on Mt Jade using the 9P remoted mounted filesystem. + +`root@(none):~ # uname -a` + +``` +Linux (none) 5.7.0 #1 SMP Fri Apr 22 15:57:28 CDT 2022 aarch64 GNU/Linux +``` + +`root@(none):~ # date` + +``` +Wed 31 Dec 1969 06:12:03 PM CST +``` + +Verify we are executing on an 80 core Ampere Altra Q80-30 CPU + +`root@(none):~ # lscpu` + +``` +Architecture: aarch64 +CPU op-mode(s): 32-bit, 64-bit +Byte Order: Little Endian +CPU(s): 80 +On-line CPU(s) list: 0-79 +Thread(s) per core: 1 +Core(s) per socket: 80 +Socket(s): 1 +Vendor ID: ARM +Model: 1 +Model name: Neoverse-N1 +Stepping: r3p1 +BogoMIPS: 50.00 +L1d cache: 5 MiB +L1i cache: 5 MiB +L2 cache: 80 MiB +Vulnerability Itlb multihit: Not affected +Vulnerability L1tf: Not affected +Vulnerability Mds: Not affected +Vulnerability Meltdown: Not affected +Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl +Vulnerability Spectre v1: Mitigation; __user pointer sanitization +Vulnerability Spectre v2: Not affected +Vulnerability Tsx async abort: Not affected +Flags: fp asimd aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc + dcpop asimddp ssbs +``` + +___ +SERVER +___ + +`cpud -init -d` + + ``` + 1970/01/01 00:02:15 + CPUD:Args [/bbin/cpud -init -d] pid 669 *runasinit true *remote false + 1970/01/01 00:02:15 + CPUD:Running as Init + 1970/01/01 00:02:15 + CPUD:Kicked off startup jobs, now serve ssh + 1970/01/01 00:02:15 + CPUD:Start the process reaper + 1970/01/01 00:02:15 CPUD:starting ssh server on port 23 + 1970/01/01 00:02:15 CPUD: All startup jobs exited + 1970/01/01 00:02:15 CPUD: Syncing filesystems + 1970/01/01 00:02:46 CPUD:attempt to bind 127.0.0.1 0 granted + 1970/01/01 00:02:46 CPUD:handler: cmd is ["cpud" "-d" "-remote" "-bin" "cpud" "-port9p" "45675" "date"] + 1970/01/01 00:02:46 command started with pty + 1970/01/01 00:02:47 wait for /bbin/cpud -d -remote -bin cpud -port9p 45675 date + 1970/01/01 00:02:47 cmd "/bbin/cpud -d -remote -bin cpud -port9p 45675 date" returns with exit status 0 + 1970/01/01 00:02:47 + CPUD:handler exits + 1970/01/01 00:02:56 CPUD:attempt to bind 127.0.0.1 0 granted + 1970/01/01 00:02:56 CPUD:handler: cmd is ["cpud" "-d" "-remote" "-bin" "cpud" "-port9p" "46593" "date"] + 1970/01/01 00:02:56 command started with pty + 1970/01/01 00:02:56 wait for /bbin/cpud -d -remote -bin cpud -port9p 46593 date + 1970/01/01 00:02:56 cmd "/bbin/cpud -d -remote -bin cpud -port9p 46593 date" returns with exit status 0 + 1970/01/01 00:02:56 + CPUD:handler exits + ``` + +## Plan8 Server cpud (LinuxBoot Mt Jade) + +- Booting Mt Jade + + After flashing your LinuxBoot image boot Mt Jade and either connect to the UEFI UART with a TTL cable or use ipmitool with the serial-over-lan (SOL) option. + + `ipmitool -I lanplus -H 192.168.0.156 -U admin -P admin sol activate` + +- Interrupt systemboot within 5 seconds using CTRL+C + + There are also kernel options that allow you to configure the network and run cpud instead of systemboot. Look at the Makefile in this project to generate a kernel that automatically initializes the network and runs cpud as init. + + ``` + ____ _ _ _ + / ___| _ _ ___| |_ ___ _ __ ___ | |__ ___ ___ | |_ + \___ \| | | / __| __/ _ \ '_ ` _ \| '_ \ / _ \ / _ \| __| + ___) | |_| \__ \ || __/ | | | | | |_) | (_) | (_) | |_ + |____/ \__, |___/\__\___|_| |_| |_|_.__/ \___/ \___/ \__| + |___/ + 1970/01/01 00:00:21 Watchdog is stopped. + 1970/01/01 00:00:21 VPD bmc_bootorder_override is + 1970/01/01 00:00:21 System firmware version: TianoCore 2.06.100 (SYS: 2.06.20220308) + 1970/01/01 00:00:21 Failed to set system firmware version to BMC invalid response, expected first byte of response to be 0, got: 204. + 1970/01/01 00:00:21 No product name is matched for OEM commands. + 1970/01/01 00:00:21 ************************************************************************** + 1970/01/01 00:00:21 Starting boot sequence, press CTRL-C within 5 seconds to drop into a shell + 1970/01/01 00:00:21 ************************************************************************** + + ^CException: systemboot killed by signal interrupt + [tty 1], line 1: systemboot + /# root@(none) + ``` + +- Network setup + + Configure the network by using DHCP or static assignment. + + **Dynamic Address** + + `dhclient` + + ``` + 1970/01/01 00:05:41 Bringing up interface eth0... + 1970/01/01 00:05:41 Bringing up interface eth1... + 1970/01/01 00:05:42 Attempting to get DHCPv4 lease on eth1 + 1970/01/01 00:05:45 Got DHCPv4 lease on eth1: DHCPv4 Message + opcode: BootReply + hwtype: Ethernet + hopcount: 0 + transaction ID: 0x79187472 + num seconds: 0 + flags: Unicast (0x00) + client IP: 0.0.0.0 + your IP: 192.168.0.192 + server IP: 192.168.0.1 + gateway IP: 0.0.0.0 + client MAC: 0c:42:a1:5a:8a:9d + server hostname: + bootfile name: + options: + Subnet Mask: ffffff00 + Router: 192.168.0.1 + Domain Name Server: 192.168.0.11, 1.1.1.1 + Domain Name: lan + Broadcast Address: 192.168.0.255 + IP Addresses Lease Time: 12h0m0s + DHCP Message Type: ACK + Server Identifier: 192.168.0.1 + Renew Time Value: [0 0 84 96] + Rebinding Time Value: [0 0 147 168] + 1970/01/01 00:05:45 Configured eth1 with IPv4 DHCP Lease IP 192.168.0.192/24 + 1970/01/01 00:06:11 Could not bring up interface eth0: link "eth0" still down after 30 seconds + 1970/01/01 00:06:12 Could not configure eth1 for IPv6: timeout after waiting for a non-tentative IPv6 address + 1970/01/01 00:06:12 Finished trying to configure all interfaces. + ``` + + **Static Address** + + Set the IP and subnet on ETH1 + + `ip a add 192.168.0.193/24 dev eth1` + + Set ETH1 link up + + `ip link set eth1 up` + + Show the link status + + `ip link show` + + ``` + 1: lo: mtu 65536 state UNKNOWN + link/loopback + 2: eth0: mtu 1500 state DOWN + link/ether 0c:42:a1:5a:8a:9c + 3: eth1: mtu 1500 state UP + link/ether 0c:42:a1:5a:8a:9d + 4: tunl0: <0> mtu 1480 state DOWN + link/ipip + ``` + +- SSH public key + + Create key.pub from your public key on the client. See The Makefile in this project specifies the default key.pub for the server. + + client (e.g. pi@rpi3debug): `cat ~/.ssh/id_rsa.pub` + + server (e.g. LinuxBoot MtJade): `echo "ssh-rsa AAAAB3Nza...4PiQ== hp 840g1 laptop" > key.pub` + +- Starting cpud + + `cpud -init` + +## Debugging 9P + +1. Was your LinuxBoot kernel built with 9P enabled? + + `make CONFIG_NET_9P=y CONFIG_9P_FS=y` + + Note: tinyconfig, oldconfig, etc. may not have these symbols defined especially if you are using an unmodified Makefile. Also make sure it's not defined as a module *e.g. CONFIG_NET_9P=m* since LinuxBoot builds a small monolithic kernel due to the size of SPI-NOR typically available. + +2. Is there a problem reading the SSH keys on the client or server? + + The default file cpu looks for on the client side is called *~/.ssh/identity* + +3. CPUD(as remote):9p mount no such device + + It's a vague error that is difficult to understand where it came from since the u-root/cpu error printed [here](https://github.com/u-root/cpu/blob/main/cmds/cpud/main.go#L223) the actual message _**no such device**_ came from the call to [mount()](https://man7.org/linux/man-pages/man2/mount.2.html). + + The error is coming from the cpud side where the LinuxBoot kernel does not have a 9P driver in the kernel. See item #1 above. + + ` pi@rpi3debug:~ $ cpu -d -dbg9p 192.168.0.193 date` + + ``` + 2022/04/22 01:38:04 + Running as client, to host "192.168.0.193", args "date" + 2022/04/22 01:38:04 getKeyFile for "" + 2022/04/22 01:38:04 key file from config is "~/.ssh/identity" + 2022/04/22 01:38:04 getKeyFile returns "/home/pi/.ssh/identity" + 2022/04/22 01:38:04 getPort("192.168.0.193", "") + 2022/04/22 01:38:04 config.Get("192.168.0.193",""): "22" + 2022/04/22 01:38:04 getPort: return default "23" + 2022/04/22 01:38:04 returns "23" + 2022/04/22 01:38:05 listener *ssh.tcpListener &{0x1d802e8 0x1d98b80 0x1e88000} addr 127.0.0.1:43971 port 23 + 2022/04/22 01:38:05 srv: try to accept + 2022/04/22 01:38:05 command is "cpud -remote -bin cpud -port9p 43971 date" + 2022/04/22 01:38:05 Start remote with command "cpud -remote -bin cpud -port9p 43971 date" + 2022/04/22 01:38:05 srv got &{0x1d0a200 0x1d802e8 0x1cc34a0} + 1970/01/01 00:18:31 + CPUD:Args [cpud -remote -bin cpud -port9p 43971 date] pid 759 *runasinit false *remote true + 1970/01/01 00:18:31 + CPUD:Not server package: Running as remote: args ["date"], port9p 43971 + 1970/01/01 00:18:31 CPUD:namespace is "/lib:/lib64:/usr:/bin:/etc:/home" + 1970/01/01 00:18:31 CPUD:Dial 127.0.0.1:43971 + 1970/01/01 00:18:31 CPUD:Connected: write nonce 0799fc2a4ab42cfbf2c9e3535e0ed389 + 1970/01/01 00:18:31 CPUD:Wrote the nonce + 1970/01/01 00:18:31 CPUD:fd is 10 + 1970/01/01 00:18:31 CPUD: mount 127.0.0.1 on /tmp/cpu 9p 0x6 version=9p2000.L,trans=fd,rfdno=10,wfdno=10,uname=pi,debug=0,msize=1048576 + 1970/01/01 00:18:31 CPUD(as remote):9p mount no such device + 2022/04/22 01:38:05 srv: read the nonce back got 0799fc2a4ab42cfbf2c9e3535e0ed389 + 2022/04/22 01:38:05 SSH error Process exited with status 1 + ``` + +4. Enabling debug options on the client (cpu) and server (cpud) + + Look at using -d -dbg9p -dump options + + `pi@rpi3debug:~ $ cpu -help` + + ``` + Usage of cpu: + -bin string + path of cpu binary (default "cpud") + -cpudcmd string + cpud invocation to run at remote, e.g. cpud -d -bin cpud + -d enable debug prints + -dbg9p + show 9p io + -dump + Dump copious output, including a 9p trace, to a temp file at exit + -fstab string + pass an fstab to the cpud + -hk string + file for host key + -key string + key file + -mountopts string + Extra options to add to the 9p mount + -msize int + msize to use (default 1048576) + -namespace string + Default namespace for the remote process -- set to none for none (default "/lib:/lib64:/usr:/bin:/etc:/home") + -network string + network to use (default "tcp") + -new + Use new cpu package for cpu client + -port9p string + port9p # on remote machine for 9p mount + -root string + 9p root (default "/") + -sp string + cpu default port + -timeout9p string + time to wait for the 9p mount to happen. (default "100ms") + ``` \ No newline at end of file diff --git a/mainboards/ampere/jade/flash.config b/mainboards/ampere/jade/flash.config index 953948e5..b26c7a94 100644 --- a/mainboards/ampere/jade/flash.config +++ b/mainboards/ampere/jade/flash.config @@ -489,6 +489,7 @@ CONFIG_EFI_CAPSULE_LOADER=y # CONFIG_EFI_TEST is not set # CONFIG_RESET_ATTACK_MITIGATION is not set # CONFIG_EFI_DISABLE_PCI_DMA is not set +CONFIG_RTC_DRV_EFI=y # end of EFI (Extensible Firmware Interface) Support CONFIG_EFI_EARLYCON=y @@ -859,7 +860,7 @@ CONFIG_STREAM_PARSER=y # CONFIG_WIRELESS is not set # CONFIG_WIMAX is not set # CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set +CONFIG_NET_9P=y # CONFIG_CAIF is not set # CONFIG_CEPH_LIB is not set # CONFIG_NFC is not set @@ -1932,7 +1933,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y # CONFIG_INFINIBAND is not set CONFIG_EDAC_SUPPORT=y # CONFIG_EDAC is not set -# CONFIG_RTC_CLASS is not set +CONFIG_RTC_CLASS=y # CONFIG_DMADEVICES is not set # @@ -2296,6 +2297,7 @@ CONFIG_NETWORK_FILESYSTEMS=y # CONFIG_CIFS is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set +CONFIG_9P_FS=y CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-1" CONFIG_NLS_CODEPAGE_437=y diff --git a/mainboards/bytedance/g220a/Makefile b/mainboards/bytedance/g220a/Makefile deleted file mode 100644 index 3dbd20b3..00000000 --- a/mainboards/bytedance/g220a/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -default: build - -build: - echo fetch, flashkernel, testflashkernel and housekeeping - -flashkernel: config_g220a.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - cp flashinitramfs.cpio.lzma linux/ -# echo CONFIG_CMDLINE_BOOL=y >> linux/.config -# echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config -# stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - go run github.com/u-root/u-root -o $@ -build=bb \ - -uinitcmd=/bbin/console \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - github.com/u-root/u-root/cmds/exp/console \ - -fetch: getkernel geturoot getfiano - -getkernel: - rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -testflashkernel: flashkernel - echo ^C will exit qemu! be careful! - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma -monitor /dev/null - -housekeeping: - rm -rf flashinitramfs.cpio \ - flashinitramfs.cpio.lzma \ - flashkernel \ - diff --git a/mainboards/bytedance/g220a/config_g220a.config b/mainboards/bytedance/g220a/config_g220a.config deleted file mode 100644 index 7999ea36..00000000 --- a/mainboards/bytedance/g220a/config_g220a.config +++ /dev/null @@ -1,3740 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.19.127 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -CONFIG_NO_HZ=y -CONFIG_HIGH_RES_TIMERS=y -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -# CONFIG_BSD_PROCESS_ACCT_V3 is not set -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=18 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="flashinitramfs.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -# CONFIG_EXPERT is not set -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -CONFIG_VM_EVENT_COUNTERS=y -CONFIG_SLUB_DEBUG=y -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_PROFILING is not set -CONFIG_TRACEPOINTS=y -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -CONFIG_HYPERVISOR_GUEST=y -# CONFIG_PARAVIRT is not set -# CONFIG_JAILHOUSE_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -CONFIG_X86_16BIT=y -CONFIG_X86_ESPFIX64=y -CONFIG_X86_VSYSCALL_EMULATION=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -CONFIG_X86_CHECK_BIOS_CORRUPTION=y -CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -# CONFIG_MTRR_SANITIZER is not set -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -CONFIG_SECCOMP=y -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_VERIFY_SIG is not set -CONFIG_CRASH_DUMP=y -CONFIG_KEXEC_JUMP=y -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0x0 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=serial,ttyS0,115200 console=tty console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -CONFIG_MODIFY_LDT_SYSCALL=y -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y - -# -# Power management and ACPI options -# -CONFIG_ARCH_HIBERNATION_HEADER=y -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -CONFIG_HIBERNATE_CALLBACKS=y -CONFIG_HIBERNATION=y -CONFIG_PM_STD_PARTITION="" -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -CONFIG_X86_PM_TIMER=y -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -# CONFIG_CPU_FREQ_STAT is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -CONFIG_CPU_FREQ_GOV_USERSPACE=y -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -CONFIG_X86_ACPI_CPUFREQ=y -CONFIG_X86_ACPI_CPUFREQ_CPB=y -# CONFIG_X86_POWERNOW_K8 is not set -# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -# CONFIG_CPU_IDLE_GOV_LADDER is not set -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_PCI_DOMAINS=y -CONFIG_MMCONF_FAM10H=y -CONFIG_PCIEPORTBUS=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -# CONFIG_PCIEASPM_DEBUG is not set -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_STUB is not set -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_HAVE_GENERIC_GUP=y - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set - -# -# Tegra firmware driver -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP_FILTER=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -CONFIG_MODULE_UNLOAD=y -CONFIG_MODULE_FORCE_UNLOAD=y -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_RDMA=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -CONFIG_IOSCHED_DEADLINE=y -CONFIG_IOSCHED_CFQ=y -# CONFIG_DEFAULT_DEADLINE is not set -CONFIG_DEFAULT_CFQ=y -# CONFIG_DEFAULT_NOOP is not set -CONFIG_DEFAULT_IOSCHED="cfq" -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_BOUNCE=y -CONFIG_VIRT_TO_BUS=y -CONFIG_MMU_NOTIFIER=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -CONFIG_XFRM_ALGO=y -CONFIG_XFRM_USER=y -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -# CONFIG_XFRM_MIGRATE is not set -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_SMC is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -CONFIG_IP_ADVANCED_ROUTER=y -# CONFIG_IP_FIB_TRIE_STATS is not set -CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_MULTIPATH=y -CONFIG_IP_ROUTE_VERBOSE=y -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -CONFIG_IP_PNP_RARP=y -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -CONFIG_IP_MROUTE=y -# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set -CONFIG_IP_PIMSM_V1=y -CONFIG_IP_PIMSM_V2=y -CONFIG_SYN_COOKIES=y -# CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=m -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_XFRM_MODE_TRANSPORT=y -CONFIG_INET_XFRM_MODE_TUNNEL=y -CONFIG_INET_XFRM_MODE_BEET=y -# CONFIG_INET_DIAG is not set -CONFIG_TCP_CONG_ADVANCED=y -# CONFIG_TCP_CONG_BIC is not set -CONFIG_TCP_CONG_CUBIC=y -# CONFIG_TCP_CONG_WESTWOOD is not set -# CONFIG_TCP_CONG_HTCP is not set -# CONFIG_TCP_CONG_HSTCP is not set -# CONFIG_TCP_CONG_HYBLA is not set -# CONFIG_TCP_CONG_VEGAS is not set -# CONFIG_TCP_CONG_NV is not set -# CONFIG_TCP_CONG_SCALABLE is not set -# CONFIG_TCP_CONG_LP is not set -# CONFIG_TCP_CONG_VENO is not set -# CONFIG_TCP_CONG_YEAH is not set -# CONFIG_TCP_CONG_ILLINOIS is not set -# CONFIG_TCP_CONG_DCTCP is not set -# CONFIG_TCP_CONG_CDG is not set -# CONFIG_TCP_CONG_BBR is not set -CONFIG_DEFAULT_CUBIC=y -# CONFIG_DEFAULT_RENO is not set -CONFIG_DEFAULT_TCP_CONG="cubic" -CONFIG_TCP_MD5SIG=y -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -CONFIG_INET6_AH=y -CONFIG_INET6_ESP=y -# CONFIG_INET6_ESP_OFFLOAD is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -CONFIG_INET6_XFRM_MODE_TRANSPORT=y -CONFIG_INET6_XFRM_MODE_TUNNEL=y -CONFIG_INET6_XFRM_MODE_BEET=y -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -# CONFIG_IPV6_SIT_6RD is not set -CONFIG_IPV6_NDISC_NODETYPE=y -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -CONFIG_NETWORK_SECMARK=y -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -# CONFIG_NET_SCH_MULTIQ is not set -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -# CONFIG_NET_SCH_MQPRIO is not set -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -# CONFIG_NET_SCH_FQ_CODEL is not set -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_INGRESS is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -CONFIG_NET_CLS=y -# CONFIG_NET_CLS_BASIC is not set -# CONFIG_NET_CLS_TCINDEX is not set -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -# CONFIG_NET_CLS_U32 is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -# CONFIG_NET_CLS_BPF is not set -# CONFIG_NET_CLS_FLOWER is not set -# CONFIG_NET_CLS_MATCHALL is not set -CONFIG_NET_EMATCH=y -CONFIG_NET_EMATCH_STACK=32 -# CONFIG_NET_EMATCH_CMP is not set -# CONFIG_NET_EMATCH_NBYTE is not set -# CONFIG_NET_EMATCH_U32 is not set -# CONFIG_NET_EMATCH_META is not set -# CONFIG_NET_EMATCH_TEXT is not set -CONFIG_NET_CLS_ACT=y -# CONFIG_NET_ACT_POLICE is not set -# CONFIG_NET_ACT_GACT is not set -# CONFIG_NET_ACT_MIRRED is not set -# CONFIG_NET_ACT_SAMPLE is not set -# CONFIG_NET_ACT_NAT is not set -# CONFIG_NET_ACT_PEDIT is not set -# CONFIG_NET_ACT_SIMP is not set -# CONFIG_NET_ACT_SKBEDIT is not set -# CONFIG_NET_ACT_CSUM is not set -# CONFIG_NET_ACT_VLAN is not set -# CONFIG_NET_ACT_BPF is not set -# CONFIG_NET_ACT_SKBMOD is not set -# CONFIG_NET_ACT_IFE is not set -# CONFIG_NET_ACT_TUNNEL_KEY is not set -CONFIG_NET_SCH_FIFO=y -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -CONFIG_HAMRADIO=y - -# -# Packet Radio protocols -# -# CONFIG_AX25 is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set - -# -# Bus devices -# -CONFIG_CONNECTOR=y -CONFIG_PROC_EVENTS=y -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -CONFIG_CDROM=y -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -CONFIG_NVME_CORE=y -CONFIG_BLK_DEV_NVME=y -CONFIG_NVME_MULTIPATH=y -CONFIG_NVME_FABRICS=y -CONFIG_NVME_RDMA=y -CONFIG_NVME_FC=y -CONFIG_NVME_TARGET=y -# CONFIG_NVME_TARGET_LOOP is not set -CONFIG_NVME_TARGET_RDMA=y -CONFIG_NVME_TARGET_FC=y -# CONFIG_NVME_TARGET_FCLOOP is not set - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_MQ_DEFAULT=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -CONFIG_BLK_DEV_SR=y -CONFIG_BLK_DEV_SR_VENDOR=y -CONFIG_CHR_DEV_SG=y -# CONFIG_CHR_DEV_SCH is not set -CONFIG_SCSI_CONSTANTS=y -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -CONFIG_SCSI_SPI_ATTRS=y -# CONFIG_SCSI_FC_ATTRS is not set -CONFIG_SCSI_ISCSI_ATTRS=m -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -CONFIG_SCSI_SRP_ATTRS=m -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -# CONFIG_SATA_ZPODD is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -# CONFIG_PDC_ADMA is not set -# CONFIG_SATA_QSTOR is not set -# CONFIG_SATA_SX4 is not set -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -# CONFIG_ATA_PIIX is not set -# CONFIG_SATA_DWC is not set -# CONFIG_SATA_MV is not set -# CONFIG_SATA_NV is not set -# CONFIG_SATA_PROMISE is not set -# CONFIG_SATA_SIL is not set -# CONFIG_SATA_SIS is not set -# CONFIG_SATA_SVW is not set -# CONFIG_SATA_ULI is not set -# CONFIG_SATA_VIA is not set -# CONFIG_SATA_VITESSE is not set - -# -# PATA SFF controllers with BMDMA -# -# CONFIG_PATA_ALI is not set -# CONFIG_PATA_AMD is not set -# CONFIG_PATA_ARTOP is not set -# CONFIG_PATA_ATIIXP is not set -# CONFIG_PATA_ATP867X is not set -# CONFIG_PATA_CMD64X is not set -# CONFIG_PATA_CYPRESS is not set -# CONFIG_PATA_EFAR is not set -# CONFIG_PATA_HPT366 is not set -# CONFIG_PATA_HPT37X is not set -# CONFIG_PATA_HPT3X2N is not set -# CONFIG_PATA_HPT3X3 is not set -# CONFIG_PATA_IT8213 is not set -# CONFIG_PATA_IT821X is not set -# CONFIG_PATA_JMICRON is not set -# CONFIG_PATA_MARVELL is not set -# CONFIG_PATA_NETCELL is not set -# CONFIG_PATA_NINJA32 is not set -# CONFIG_PATA_NS87415 is not set -# CONFIG_PATA_OLDPIIX is not set -# CONFIG_PATA_OPTIDMA is not set -# CONFIG_PATA_PDC2027X is not set -# CONFIG_PATA_PDC_OLD is not set -# CONFIG_PATA_RADISYS is not set -# CONFIG_PATA_RDC is not set -# CONFIG_PATA_SCH is not set -# CONFIG_PATA_SERVERWORKS is not set -# CONFIG_PATA_SIL680 is not set -# CONFIG_PATA_SIS is not set -# CONFIG_PATA_TOSHIBA is not set -# CONFIG_PATA_TRIFLEX is not set -# CONFIG_PATA_VIA is not set -# CONFIG_PATA_WINBOND is not set - -# -# PIO-only SFF controllers -# -# CONFIG_PATA_CMD640_PCI is not set -# CONFIG_PATA_MPIIX is not set -# CONFIG_PATA_NS87410 is not set -# CONFIG_PATA_OPTI is not set -# CONFIG_PATA_RZ1000 is not set - -# -# Generic fallback / legacy drivers -# -# CONFIG_PATA_ACPI is not set -# CONFIG_ATA_GENERIC is not set -# CONFIG_PATA_LEGACY is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_IFB is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_3COM=y -# CONFIG_VORTEX is not set -# CONFIG_TYPHOON is not set -CONFIG_NET_VENDOR_ADAPTEC=y -# CONFIG_ADAPTEC_STARFIRE is not set -CONFIG_NET_VENDOR_AGERE=y -# CONFIG_ET131X is not set -CONFIG_NET_VENDOR_ALACRITECH=y -# CONFIG_SLICOSS is not set -CONFIG_NET_VENDOR_ALTEON=y -# CONFIG_ACENIC is not set -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -# CONFIG_ENA_ETHERNET is not set -CONFIG_NET_VENDOR_AMD=y -# CONFIG_AMD8111_ETH is not set -# CONFIG_PCNET32 is not set -# CONFIG_AMD_XGBE is not set -CONFIG_NET_VENDOR_AQUANTIA=y -# CONFIG_AQTION is not set -CONFIG_NET_VENDOR_ARC=y -CONFIG_NET_VENDOR_ATHEROS=y -# CONFIG_ATL2 is not set -# CONFIG_ATL1 is not set -# CONFIG_ATL1E is not set -# CONFIG_ATL1C is not set -# CONFIG_ALX is not set -CONFIG_NET_VENDOR_AURORA=y -# CONFIG_AURORA_NB8800 is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -# CONFIG_TIGON3 is not set -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -CONFIG_NET_VENDOR_BROCADE=y -# CONFIG_BNA is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -# CONFIG_THUNDER_NIC_PF is not set -# CONFIG_THUNDER_NIC_VF is not set -# CONFIG_THUNDER_NIC_BGX is not set -# CONFIG_THUNDER_NIC_RGX is not set -# CONFIG_CAVIUM_PTP is not set -# CONFIG_LIQUIDIO is not set -# CONFIG_LIQUIDIO_VF is not set -CONFIG_NET_VENDOR_CHELSIO=y -# CONFIG_CHELSIO_T1 is not set -# CONFIG_CHELSIO_T3 is not set -# CONFIG_CHELSIO_T4 is not set -# CONFIG_CHELSIO_T4VF is not set -CONFIG_NET_VENDOR_CISCO=y -# CONFIG_ENIC is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_DEC=y -CONFIG_NET_TULIP=y -# CONFIG_DE2104X is not set -# CONFIG_TULIP is not set -# CONFIG_DE4X5 is not set -# CONFIG_WINBOND_840 is not set -# CONFIG_DM9102 is not set -# CONFIG_ULI526X is not set -CONFIG_NET_VENDOR_DLINK=y -# CONFIG_DL2K is not set -# CONFIG_SUNDANCE is not set -CONFIG_NET_VENDOR_EMULEX=y -CONFIG_BE2NET=m -CONFIG_BE2NET_HWMON=y -CONFIG_BE2NET_BE2=y -CONFIG_BE2NET_BE3=y -CONFIG_BE2NET_LANCER=y -CONFIG_BE2NET_SKYHAWK=y -CONFIG_NET_VENDOR_EZCHIP=y -CONFIG_NET_VENDOR_HP=y -# CONFIG_HP100 is not set -CONFIG_NET_VENDOR_HUAWEI=y -# CONFIG_HINIC is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -# CONFIG_IGB is not set -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_JME is not set -CONFIG_NET_VENDOR_MARVELL=y -# CONFIG_MVMDIO is not set -# CONFIG_SKGE is not set -# CONFIG_SKY2 is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLX4_EN is not set -CONFIG_MLX4_CORE=m -CONFIG_MLX4_DEBUG=y -CONFIG_MLX4_CORE_GEN2=y -# CONFIG_MLX5_CORE is not set -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -CONFIG_NET_VENDOR_MICREL=y -# CONFIG_KS8842 is not set -# CONFIG_KS8851_MLL is not set -# CONFIG_KSZ884X_PCI is not set -CONFIG_NET_VENDOR_MICROSEMI=y -CONFIG_NET_VENDOR_MYRI=y -# CONFIG_MYRI10GE is not set -# CONFIG_FEALNX is not set -CONFIG_NET_VENDOR_NATSEMI=y -# CONFIG_NATSEMI is not set -# CONFIG_NS83820 is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -CONFIG_NET_VENDOR_NETRONOME=y -# CONFIG_NFP is not set -CONFIG_NET_VENDOR_NI=y -CONFIG_NET_VENDOR_8390=y -# CONFIG_NE2K_PCI is not set -CONFIG_NET_VENDOR_NVIDIA=y -CONFIG_FORCEDETH=y -CONFIG_NET_VENDOR_OKI=y -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_QLOGIC=y -# CONFIG_QLA3XXX is not set -# CONFIG_QLCNIC is not set -# CONFIG_QLGE is not set -# CONFIG_NETXEN_NIC is not set -# CONFIG_QED is not set -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RDC=y -# CONFIG_R6040 is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -CONFIG_8139TOO=y -CONFIG_8139TOO_PIO=y -# CONFIG_8139TOO_TUNE_TWISTER is not set -# CONFIG_8139TOO_8129 is not set -# CONFIG_8139_OLD_RX_RESET is not set -CONFIG_R8169=y -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -CONFIG_NET_VENDOR_SEEQ=y -CONFIG_NET_VENDOR_SOLARFLARE=y -# CONFIG_SFC is not set -# CONFIG_SFC_FALCON is not set -CONFIG_NET_VENDOR_SILAN=y -# CONFIG_SC92031 is not set -CONFIG_NET_VENDOR_SIS=y -# CONFIG_SIS900 is not set -# CONFIG_SIS190 is not set -CONFIG_NET_VENDOR_SMSC=y -# CONFIG_EPIC100 is not set -# CONFIG_SMSC911X is not set -# CONFIG_SMSC9420 is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -# CONFIG_STMMAC_ETH is not set -CONFIG_NET_VENDOR_SUN=y -# CONFIG_HAPPYMEAL is not set -# CONFIG_SUNGEM is not set -# CONFIG_CASSINI is not set -# CONFIG_NIU is not set -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -CONFIG_NET_VENDOR_TEHUTI=y -# CONFIG_TEHUTI is not set -CONFIG_NET_VENDOR_TI=y -# CONFIG_TI_CPSW_ALE is not set -# CONFIG_TLAN is not set -CONFIG_NET_VENDOR_VIA=y -# CONFIG_VIA_RHINE is not set -# CONFIG_VIA_VELOCITY is not set -CONFIG_NET_VENDOR_WIZNET=y -# CONFIG_WIZNET_W5100 is not set -# CONFIG_WIZNET_W5300 is not set -CONFIG_FDDI=y -# CONFIG_DEFXX is not set -# CONFIG_SKFP is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y -# CONFIG_LED_TRIGGER_PHY is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -CONFIG_INPUT_FF_MEMLESS=y -CONFIG_INPUT_POLLDEV=y -CONFIG_INPUT_SPARSEKMAP=y -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_LIFEBOOK=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_PS2_VMMOUSE is not set -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PXRC is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_GTCO is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_PCSPKR is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_ROCKETPORT is not set -# CONFIG_CYCLADES is not set -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK is not set -# CONFIG_SYNCLINKMP is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_NOZOMI is not set -# CONFIG_ISI is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -CONFIG_SERIAL_8250_DETECT_IRQ=y -CONFIG_SERIAL_8250_RSA=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -CONFIG_SERIAL_8250_MID=y -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_INTEL is not set -# CONFIG_HW_RANDOM_AMD is not set -CONFIG_HW_RANDOM_VIA=y -CONFIG_NVRAM=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_HPET=y -# CONFIG_HPET_MMAP is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# CONFIG_RANDOM_TRUST_CPU is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=m - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -CONFIG_I2C_I801=y -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_ABITUGURU is not set -# CONFIG_SENSORS_ABITUGURU3 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS1015 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_SENSORS_XGENE is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# CONFIG_INTEL_PCH_THERMAL is not set -CONFIG_WATCHDOG=y -# CONFIG_WATCHDOG_CORE is not set -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set - -# -# Watchdog Pretimeout Governors -# -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -# CONFIG_AGP_SIS is not set -# CONFIG_AGP_VIA is not set -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ACP (Audio CoProcessor) Configuration -# - -# -# AMD Library routines -# -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -# CONFIG_FB_UVESA is not set -# CONFIG_FB_VESA is not set -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_BROADSHEET is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -CONFIG_VGACON_SOFT_SCROLLBACK=y -CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 -# CONFIG_VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -CONFIG_LOGO=y -# CONFIG_LOGO_LINUX_MONO is not set -# CONFIG_LOGO_LINUX_VGA16 is not set -CONFIG_LOGO_LINUX_CLUT224=y -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -CONFIG_HID_A4TECH=y -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -CONFIG_HID_APPLE=y -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -CONFIG_HID_BELKIN=y -# CONFIG_HID_BETOP_FF is not set -CONFIG_HID_CHERRY=y -CONFIG_HID_CHICONY=y -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_CMEDIA is not set -CONFIG_HID_CYPRESS=y -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -CONFIG_HID_EZKEY=y -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GOOGLE_HAMMER is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -CONFIG_HID_GYRATION=y -# CONFIG_HID_ICADE is not set -CONFIG_HID_ITE=y -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -CONFIG_HID_KENSINGTON=y -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -CONFIG_HID_LOGITECH=y -# CONFIG_HID_LOGITECH_DJ is not set -# CONFIG_HID_LOGITECH_HIDPP is not set -CONFIG_LOGITECH_FF=y -# CONFIG_LOGIRUMBLEPAD2_FF is not set -# CONFIG_LOGIG940_FF is not set -CONFIG_LOGIWHEELS_FF=y -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -CONFIG_HID_REDRAGON=y -CONFIG_HID_MICROSOFT=y -CONFIG_HID_MONTEREY=y -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -CONFIG_HID_NTRIG=y -# CONFIG_HID_ORTEK is not set -CONFIG_HID_PANTHERLORD=y -CONFIG_PANTHERLORD_FF=y -# CONFIG_HID_PENMOUNT is not set -CONFIG_HID_PETALYNX=y -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -CONFIG_HID_SAMSUNG=y -CONFIG_HID_SONY=y -# CONFIG_SONY_FF is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -CONFIG_HID_SUNPLUS=y -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -CONFIG_HID_TOPSEED=y -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# USB HID support -# -CONFIG_USB_HID=y -CONFIG_HID_PID=y -CONFIG_USB_HIDDEV=y - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_MON=y -# CONFIG_USB_WUSB_CBAF is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PLATFORM is not set -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -# CONFIG_USB_OHCI_HCD_PLATFORM is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -CONFIG_USB_PRINTER=y -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -# CONFIG_USB_UAS is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_APU is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set -# CONFIG_LEDS_CLEVO_MAIL is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_INTEL_SS4200 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXCPLD is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_DISK is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_INFINIBAND=y -CONFIG_INFINIBAND_USER_MAD=m -CONFIG_INFINIBAND_USER_ACCESS=m -# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set -CONFIG_INFINIBAND_USER_MEM=y -CONFIG_INFINIBAND_ON_DEMAND_PAGING=y -CONFIG_INFINIBAND_ADDR_TRANS=y -CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y -CONFIG_INFINIBAND_MTHCA=m -CONFIG_INFINIBAND_MTHCA_DEBUG=y -CONFIG_INFINIBAND_QIB=m -CONFIG_MLX4_INFINIBAND=m -CONFIG_INFINIBAND_NES=m -# CONFIG_INFINIBAND_NES_DEBUG is not set -CONFIG_INFINIBAND_OCRDMA=m -CONFIG_INFINIBAND_IPOIB=m -CONFIG_INFINIBAND_IPOIB_CM=y -CONFIG_INFINIBAND_IPOIB_DEBUG=y -CONFIG_INFINIBAND_IPOIB_DEBUG_DATA=y -CONFIG_INFINIBAND_SRP=m -CONFIG_INFINIBAND_ISER=m -CONFIG_INFINIBAND_OPA_VNIC=m -CONFIG_INFINIBAND_RDMAVT=m -CONFIG_RDMA_RXE=m -CONFIG_INFINIBAND_HFI1=m -# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set -# CONFIG_SDMA_VERBOSITY is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -# CONFIG_EDAC is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -# CONFIG_RTC_HCTOSYS is not set -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV8803 is not set - -# -# SPI RTC drivers -# -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -CONFIG_DW_DMAC_CORE=y -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -CONFIG_HSU_DMA=y - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO_MENU=y -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV is not set -# CONFIG_STAGING is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACER_WIRELESS is not set -# CONFIG_ACERHDF is not set -# CONFIG_DELL_SMBIOS is not set -# CONFIG_DELL_SMO8800 is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_HP_WIRELESS is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_INTEL_MENLOW is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_ACPI_WMI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_INTEL_HID_EVENT is not set -# CONFIG_INTEL_VBTN is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_PMC_CORE is not set -# CONFIG_IBM_RTL is not set -# CONFIG_INTEL_RST is not set -# CONFIG_INTEL_SMARTCONNECT is not set -# CONFIG_PVPANIC is not set -# CONFIG_INTEL_PMC_IPC is not set -# CONFIG_SURFACE_PRO3_BUTTON is not set -# CONFIG_INTEL_PUNIT_IPC is not set -# CONFIG_MLX_PLATFORM is not set -# CONFIG_INTEL_TURBO_MAX_3 is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set -# CONFIG_INTEL_ATOMISP2_PM is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# NXP/Freescale QorIQ SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -CONFIG_RAS=y -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -CONFIG_EXT4_FS_POSIX_ACL=y -CONFIG_EXT4_FS_SECURITY=y -# CONFIG_EXT4_ENCRYPTION is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -CONFIG_XFS_FS=y -# CONFIG_XFS_QUOTA is not set -# CONFIG_XFS_POSIX_ACL is not set -# CONFIG_XFS_RT is not set -# CONFIG_XFS_ONLINE_SCRUB is not set -# CONFIG_XFS_WARN is not set -# CONFIG_XFS_DEBUG is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -# CONFIG_PRINT_QUOTA_WARNING is not set -# CONFIG_QUOTA_DEBUG is not set -CONFIG_QUOTA_TREE=y -# CONFIG_QFMT_V1 is not set -CONFIG_QFMT_V2=y -CONFIG_QUOTACTL=y -CONFIG_AUTOFS4_FS=y -CONFIG_AUTOFS_FS=y -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_VMCORE=y -# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=m -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=y -CONFIG_NFS_V2=y -CONFIG_NFS_V3=y -CONFIG_NFS_V3_ACL=y -CONFIG_NFS_V4=y -# CONFIG_NFS_SWAP is not set -# CONFIG_NFS_V4_1 is not set -CONFIG_ROOT_NFS=y -# CONFIG_NFS_USE_LEGACY_DNS is not set -CONFIG_NFS_USE_KERNEL_DNS=y -# CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=y -CONFIG_LOCKD=y -CONFIG_LOCKD_V4=y -CONFIG_NFS_ACL_SUPPORT=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=y -CONFIG_SUNRPC_GSS=y -# CONFIG_SUNRPC_DEBUG is not set -CONFIG_SUNRPC_XPRT_RDMA=m -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_GF128MUL=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Authenticated Encryption with Associated Data -# -CONFIG_CRYPTO_CCM=y -CONFIG_CRYPTO_GCM=y -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128L is not set -# CONFIG_CRYPTO_AEGIS256 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_AEGIS128L_AESNI_SSE2 is not set -# CONFIG_CRYPTO_AEGIS256_AESNI_SSE2 is not set -# CONFIG_CRYPTO_MORUS640 is not set -# CONFIG_CRYPTO_MORUS640_SSE2 is not set -# CONFIG_CRYPTO_MORUS1280 is not set -# CONFIG_CRYPTO_MORUS1280_SSE2 is not set -# CONFIG_CRYPTO_MORUS1280_AVX2 is not set -CONFIG_CRYPTO_SEQIV=y -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -CONFIG_CRYPTO_CTR=y -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -CONFIG_CRYPTO_CMAC=y -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -CONFIG_CRYPTO_CRC32=m -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -CONFIG_CRYPTO_GHASH=y -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -CONFIG_CRYPTO_ARC4=y -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -# CONFIG_CRYPTO_DRBG_CTR is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_BITREVERSE=y -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_CRC_CCITT=y -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -CONFIG_LIBCRC32C=y -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DIRECT_OPS=y -CONFIG_DMA_VIRT_OPS=y -CONFIG_SWIOTLB=y -CONFIG_SGL_ALLOC=y -CONFIG_CHECK_SIGNATURE=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_UNUSED_SYMBOLS is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_STACK_VALIDATION=y -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -# CONFIG_DEBUG_KERNEL is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_SLUB_DEBUG_ON is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -CONFIG_DEBUG_MEMORY_INIT=y -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set - -# -# Debug Lockups and Hangs -# -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_INFO=y -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_WW_MUTEX_SELFTEST is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -CONFIG_DEBUG_BUGVERBOSE=y - -# -# RCU Debugging -# -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_FUNCTION_TRACER is not set -# CONFIG_PREEMPTIRQ_EVENTS is not set -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_FTRACE_SYSCALLS is not set -# CONFIG_TRACER_SNAPSHOT is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -# CONFIG_STACK_TRACER is not set -CONFIG_BLK_DEV_IO_TRACE=y -CONFIG_UPROBE_EVENTS=y -CONFIG_PROBE_EVENTS=y -# CONFIG_FTRACE_STARTUP_TEST is not set -# CONFIG_MMIOTRACE is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_PREEMPTIRQ_DELAY_TEST is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -CONFIG_PROVIDE_OHCI1394_DMA_INIT=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_TEST_KMOD is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -# CONFIG_IO_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_EARLY_PRINTK_USB=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -CONFIG_EARLY_PRINTK_DBGP=y -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set diff --git a/mainboards/cubie/board/Makefile b/mainboards/cubie/board/Makefile deleted file mode 100644 index eab664f7..00000000 --- a/mainboards/cubie/board/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -VER=5.4.0 -default: build - -build: uCore flashkernel - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio: - GOARCH=arm u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - -uCore: netbooturoot - mkimage -A arm -n 'u-root for Allwinner A10' -d uroot.cpio -T ramdisk uCore - -qemu: uCore flashkernel - qemu-system-arm -kernel flashkernel -machine cubieboard -serial stdio -initrd uCore -append 'console=ttyAM0 earlyprintk=ttyAM0,115200,keep' -display none - echo NO - exit 0 - -netbooturoot: - GOARCH=arm u-root \ - -o uroot.cpio \ - -files ~/.ssh/cpu_rsa.pub:key.pub \ - -files ~/.ssh/cpu_rsa:id_rsa \ - -files ~/.ssh/authorized_keys:authorized_keys \ - all - -flashkernel: - cp config-$(VER) linux/.config - (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make oldconfig && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make -j32) - mkimage -C none -A arm -n 'kernel for Allwinner A10' -d linux/arch/arm/boot/zImage -T kernel -a 0x40008000 -e 0x40008000 kernel - cp linux/arch/arm/boot/zImage flashkernel - -fetch: getkernel geturoot - -getkernel: - rm -rf linux - git clone git://github.com/linux-sunxi/linux-sunxi.git -b sunxi-next --depth=1 linux - (cd linux && make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- sunxi_defconfig) - -geturoot: - go get -u github.com/u-root/u-root - -packages: - sudo apt install gcc-arm-linux-gnueabihf - sudo apt install u-boot-tools diff --git a/mainboards/cubie/board/RUNKEA b/mainboards/cubie/board/RUNKEA deleted file mode 100755 index c2f8663f..00000000 --- a/mainboards/cubie/board/RUNKEA +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -sudo kea-dhcp6 -d -d -d -c kea6.conf diff --git a/mainboards/cubie/board/config-5.4.0 b/mainboards/cubie/board/config-5.4.0 deleted file mode 100644 index 2cae19f8..00000000 --- a/mainboards/cubie/board/config-5.4.0 +++ /dev/null @@ -1,4326 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm 5.4.0-rc1 Kernel Configuration -# - -# -# Compiler: arm-linux-gnueabihf-gcc (Ubuntu/Linaro 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -CONFIG_NO_HZ=y -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CGROUPS=y -# CONFIG_MEMCG is not set -# CONFIG_BLK_CGROUP is not set -# CONFIG_CGROUP_SCHED is not set -# CONFIG_CGROUP_PIDS is not set -# CONFIG_CGROUP_RDMA is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_DEVICE is not set -# CONFIG_CGROUP_CPUACCT is not set -# CONFIG_CGROUP_PERF is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y -CONFIG_BPF=y -# CONFIG_EXPERT is not set -CONFIG_UID16=y -CONFIG_MULTIUSER=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -CONFIG_PERF_USE_VMALLOC=y - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -CONFIG_SLUB_DEBUG=y -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_ARM=y -CONFIG_ARM_HAS_SG_CHAIN=y -CONFIG_SYS_SUPPORTS_APM_EMULATION=y -CONFIG_HAVE_PROC_CPU=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_ARM_PATCH_PHYS_VIRT=y -CONFIG_GENERIC_BUG=y -CONFIG_PGTABLE_LEVELS=2 - -# -# System Type -# -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_BITS_MAX=16 -CONFIG_ARCH_MULTIPLATFORM=y -# CONFIG_ARCH_EBSA110 is not set -# CONFIG_ARCH_EP93XX is not set -# CONFIG_ARCH_FOOTBRIDGE is not set -# CONFIG_ARCH_IOP32X is not set -# CONFIG_ARCH_IXP4XX is not set -# CONFIG_ARCH_DOVE is not set -# CONFIG_ARCH_PXA is not set -# CONFIG_ARCH_RPC is not set -# CONFIG_ARCH_SA1100 is not set -# CONFIG_ARCH_S3C24XX is not set -# CONFIG_ARCH_OMAP1 is not set - -# -# Multiple platform selection -# - -# -# CPU Core family selection -# -# CONFIG_ARCH_MULTI_V6 is not set -CONFIG_ARCH_MULTI_V7=y -CONFIG_ARCH_MULTI_V6_V7=y -# end of Multiple platform selection - -# CONFIG_ARCH_VIRT is not set -# CONFIG_ARCH_ACTIONS is not set -# CONFIG_ARCH_ALPINE is not set -# CONFIG_ARCH_ARTPEC is not set -# CONFIG_ARCH_ASPEED is not set -# CONFIG_ARCH_AT91 is not set -# CONFIG_ARCH_BCM is not set -# CONFIG_ARCH_BERLIN is not set -# CONFIG_ARCH_DIGICOLOR is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_HIGHBANK is not set -# CONFIG_ARCH_HISI is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_KEYSTONE is not set -# CONFIG_ARCH_MEDIATEK is not set -# CONFIG_ARCH_MESON is not set -# CONFIG_ARCH_MILBEAUT is not set -# CONFIG_ARCH_MMP is not set -# CONFIG_ARCH_MVEBU is not set -# CONFIG_ARCH_NPCM is not set - -# -# TI OMAP/AM/DM/DRA Family -# -# CONFIG_ARCH_OMAP3 is not set -# CONFIG_ARCH_OMAP4 is not set -# CONFIG_SOC_OMAP5 is not set -# CONFIG_SOC_AM33XX is not set -# CONFIG_SOC_AM43XX is not set -# CONFIG_SOC_DRA7XX is not set -# end of TI OMAP/AM/DM/DRA Family - -# CONFIG_ARCH_SIRF is not set -# CONFIG_ARCH_QCOM is not set -# CONFIG_ARCH_RDA is not set -# CONFIG_ARCH_REALVIEW is not set -# CONFIG_ARCH_ROCKCHIP is not set -# CONFIG_ARCH_S5PV210 is not set -# CONFIG_ARCH_RENESAS is not set -# CONFIG_ARCH_SOCFPGA is not set -# CONFIG_PLAT_SPEAR is not set -# CONFIG_ARCH_STI is not set -# CONFIG_ARCH_STM32 is not set -CONFIG_ARCH_SUNXI=y -CONFIG_MACH_SUN4I=y -CONFIG_MACH_SUN5I=y -CONFIG_MACH_SUN6I=y -CONFIG_MACH_SUN7I=y -CONFIG_MACH_SUN8I=y -CONFIG_MACH_SUN9I=y -CONFIG_ARCH_SUNXI_MC_SMP=y -# CONFIG_ARCH_TANGO is not set -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_UNIPHIER is not set -# CONFIG_ARCH_U8500 is not set -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_WM8850 is not set -# CONFIG_ARCH_ZX is not set -# CONFIG_ARCH_ZYNQ is not set - -# -# Processor Type -# -CONFIG_CPU_V7=y -CONFIG_CPU_THUMB_CAPABLE=y -CONFIG_CPU_32v6K=y -CONFIG_CPU_32v7=y -CONFIG_CPU_ABRT_EV7=y -CONFIG_CPU_PABRT_V7=y -CONFIG_CPU_CACHE_V7=y -CONFIG_CPU_CACHE_VIPT=y -CONFIG_CPU_COPY_V6=y -CONFIG_CPU_TLB_V7=y -CONFIG_CPU_HAS_ASID=y -CONFIG_CPU_CP15=y -CONFIG_CPU_CP15_MMU=y - -# -# Processor Features -# -# CONFIG_ARM_LPAE is not set -CONFIG_ARM_THUMB=y -# CONFIG_ARM_THUMBEE is not set -CONFIG_ARM_VIRT_EXT=y -CONFIG_SWP_EMULATE=y -# CONFIG_CPU_BIG_ENDIAN is not set -# CONFIG_CPU_ICACHE_DISABLE is not set -# CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND is not set -# CONFIG_CPU_BPREDICT_DISABLE is not set -CONFIG_CPU_SPECTRE=y -CONFIG_HARDEN_BRANCH_PREDICTOR=y -CONFIG_KUSER_HELPERS=y -CONFIG_VDSO=y -CONFIG_OUTER_CACHE=y -CONFIG_OUTER_CACHE_SYNC=y -CONFIG_MIGHT_HAVE_CACHE_L2X0=y -CONFIG_CACHE_L2X0=y -# CONFIG_CACHE_L2X0_PMU is not set -# CONFIG_PL310_ERRATA_588369 is not set -# CONFIG_PL310_ERRATA_727915 is not set -# CONFIG_PL310_ERRATA_753970 is not set -# CONFIG_PL310_ERRATA_769419 is not set -CONFIG_ARM_L1_CACHE_SHIFT_6=y -CONFIG_ARM_L1_CACHE_SHIFT=6 -CONFIG_ARM_DMA_MEM_BUFFERABLE=y -CONFIG_ARM_HEAVY_MB=y -CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y -CONFIG_DEBUG_ALIGN_RODATA=y -# CONFIG_ARM_ERRATA_430973 is not set -CONFIG_ARM_ERRATA_643719=y -# CONFIG_ARM_ERRATA_720789 is not set -# CONFIG_ARM_ERRATA_754322 is not set -# CONFIG_ARM_ERRATA_754327 is not set -# CONFIG_ARM_ERRATA_764369 is not set -# CONFIG_ARM_ERRATA_775420 is not set -# CONFIG_ARM_ERRATA_798181 is not set -# CONFIG_ARM_ERRATA_773022 is not set -# CONFIG_ARM_ERRATA_818325_852422 is not set -# CONFIG_ARM_ERRATA_821420 is not set -# CONFIG_ARM_ERRATA_825619 is not set -# CONFIG_ARM_ERRATA_857271 is not set -# CONFIG_ARM_ERRATA_852421 is not set -# CONFIG_ARM_ERRATA_852423 is not set -# CONFIG_ARM_ERRATA_857272 is not set -# end of System Type - -# -# Bus support -# -# CONFIG_ARM_ERRATA_814220 is not set -# end of Bus support - -# -# Kernel Features -# -CONFIG_HAVE_SMP=y -CONFIG_SMP=y -CONFIG_SMP_ON_UP=y -CONFIG_ARM_CPU_TOPOLOGY=y -# CONFIG_SCHED_MC is not set -# CONFIG_SCHED_SMT is not set -CONFIG_HAVE_ARM_ARCH_TIMER=y -# CONFIG_MCPM is not set -# CONFIG_BIG_LITTLE is not set -CONFIG_VMSPLIT_3G=y -# CONFIG_VMSPLIT_3G_OPT is not set -# CONFIG_VMSPLIT_2G is not set -# CONFIG_VMSPLIT_1G is not set -CONFIG_PAGE_OFFSET=0xC0000000 -CONFIG_NR_CPUS=8 -CONFIG_HOTPLUG_CPU=y -CONFIG_ARM_PSCI=y -CONFIG_ARCH_NR_GPIO=416 -CONFIG_HZ_FIXED=0 -CONFIG_HZ_100=y -# CONFIG_HZ_200 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -# CONFIG_HZ_500 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=100 -CONFIG_SCHED_HRTICK=y -# CONFIG_THUMB2_KERNEL is not set -CONFIG_ARM_PATCH_IDIV=y -CONFIG_AEABI=y -# CONFIG_OABI_COMPAT is not set -CONFIG_HAVE_ARCH_PFN_VALID=y -CONFIG_HIGHMEM=y -CONFIG_HIGHPTE=y -CONFIG_CPU_SW_DOMAIN_PAN=y -CONFIG_HW_PERF_EVENTS=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARM_MODULE_PLTS=y -CONFIG_FORCE_MAX_ZONEORDER=11 -CONFIG_ALIGNMENT_TRAP=y -# CONFIG_UACCESS_WITH_MEMCPY is not set -# CONFIG_SECCOMP is not set -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -# CONFIG_XEN is not set -# end of Kernel Features - -# -# Boot options -# -CONFIG_USE_OF=y -CONFIG_ATAGS=y -# CONFIG_DEPRECATED_PARAM_STRUCT is not set -CONFIG_ZBOOT_ROM_TEXT=0 -CONFIG_ZBOOT_ROM_BSS=0 -CONFIG_ARM_APPENDED_DTB=y -CONFIG_ARM_ATAG_DTB_COMPAT=y -CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y -# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND is not set -CONFIG_CMDLINE="" -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_AUTO_ZRELADDR=y -# CONFIG_EFI is not set -# end of Boot options - -# -# CPU Power Management -# - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_CPUFREQ_DT=y -CONFIG_CPUFREQ_DT_PLATDEV=y -# CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM is not set -# CONFIG_ARM_BIG_LITTLE_CPUFREQ is not set -# CONFIG_QORIQ_CPUFREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of CPU Power Management - -# -# Floating point emulation -# - -# -# At least one emulation must be selected -# -CONFIG_VFP=y -CONFIG_VFPv3=y -CONFIG_NEON=y -# CONFIG_KERNEL_MODE_NEON is not set -# end of Floating point emulation - -# -# Power management options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_HIBERNATION is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -# CONFIG_APM_EMULATION is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_CPU_PM=y -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARM_CPU_SUSPEND=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_TRUSTED_FOUNDATIONS is not set -CONFIG_HAVE_ARM_SMCCC=y -CONFIG_ARM_PSCI_FW=y -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_ARM_CRYPTO is not set -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_HAVE_OPROFILE=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_32BIT_OFF_T=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_REL=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=8 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_OLD_SIGACTION=y -CONFIG_64BIT_TIME=y -CONFIG_COMPAT_32BIT_TIME=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_PHYS_TO_DMA=y -CONFIG_REFCOUNT_FULL=y -# CONFIG_LOCK_EVENT_COUNTS is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -CONFIG_MODULE_UNLOAD=y -# CONFIG_MODULE_FORCE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -# CONFIG_BINFMT_ELF_FDPIC is not set -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_BOUNCE=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUGFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -CONFIG_CAN=y -CONFIG_CAN_RAW=y -CONFIG_CAN_BCM=y -CONFIG_CAN_GW=y -# CONFIG_CAN_J1939 is not set - -# -# CAN Device Drivers -# -# CONFIG_CAN_VCAN is not set -# CONFIG_CAN_VXCAN is not set -# CONFIG_CAN_SLCAN is not set -CONFIG_CAN_DEV=y -CONFIG_CAN_CALC_BITTIMING=y -# CONFIG_CAN_FLEXCAN is not set -# CONFIG_CAN_GRCAN is not set -CONFIG_CAN_SUN4I=y -# CONFIG_CAN_TI_HECC is not set -# CONFIG_CAN_C_CAN is not set -# CONFIG_CAN_CC770 is not set -# CONFIG_CAN_IFI_CANFD is not set -# CONFIG_CAN_M_CAN is not set -# CONFIG_CAN_RCAR is not set -# CONFIG_CAN_RCAR_CANFD is not set -# CONFIG_CAN_SJA1000 is not set -# CONFIG_CAN_SOFTING is not set - -# -# CAN SPI interfaces -# -# CONFIG_CAN_HI311X is not set -# CONFIG_CAN_MCP251X is not set -# end of CAN SPI interfaces - -# -# CAN USB interfaces -# -# CONFIG_CAN_8DEV_USB is not set -# CONFIG_CAN_EMS_USB is not set -# CONFIG_CAN_ESD_USB2 is not set -# CONFIG_CAN_GS_USB is not set -# CONFIG_CAN_KVASER_USB is not set -# CONFIG_CAN_MCBA_USB is not set -# CONFIG_CAN_PEAK_USB is not set -# CONFIG_CAN_UCAN is not set -# end of CAN USB interfaces - -# CONFIG_CAN_DEBUG_DEVICES is not set -# end of CAN Device Drivers - -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_SPI=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -CONFIG_ARM_CCI=y -CONFIG_ARM_CCI400_COMMON=y -CONFIG_ARM_CCI400_PORT_CTRL=y -# CONFIG_BRCMSTB_GISB_ARB is not set -# CONFIG_MOXTET is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_SUN50I_DE2_BUS is not set -CONFIG_SUNXI_RSB=y -# CONFIG_VEXPRESS_CONFIG is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_MDIO=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# NVME Support -# -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# - -# -# SCIF Bus Driver -# - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_USB is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_AHCI_CEVA is not set -CONFIG_AHCI_SUNXI=y -# CONFIG_AHCI_QORIQ is not set -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -# CONFIG_SATA_DWC is not set - -# -# PATA SFF controllers with BMDMA -# - -# -# PIO-only SFF controllers -# - -# -# Generic fallback / legacy drivers -# -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_ALACRITECH=y -CONFIG_NET_VENDOR_ALLWINNER=y -CONFIG_SUN4I_EMAC=y -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -CONFIG_NET_VENDOR_AQUANTIA=y -# CONFIG_NET_VENDOR_ARC is not set -CONFIG_NET_VENDOR_AURORA=y -# CONFIG_AURORA_NB8800 is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -# CONFIG_NET_VENDOR_CIRRUS is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_GEMINI_ETHERNET is not set -# CONFIG_DM9000 is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_FARADAY is not set -CONFIG_NET_VENDOR_GOOGLE=y -CONFIG_NET_VENDOR_HISILICON=y -# CONFIG_HIX5HD2_GMAC is not set -# CONFIG_HISI_FEMAC is not set -# CONFIG_HIP04_ETH is not set -# CONFIG_HNS is not set -# CONFIG_HNS_DSAF is not set -# CONFIG_HNS_ENET is not set -CONFIG_NET_VENDOR_HUAWEI=y -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_NET_VENDOR_MARVELL is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETRONOME=y -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PENSANDO=y -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000_SPI is not set -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -CONFIG_NET_VENDOR_SOLARFLARE=y -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -CONFIG_DWMAC_SUNXI=y -CONFIG_DWMAC_SUN8I=y -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -CONFIG_MDIO_BUS_MUX=y -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MSCC_MIIM is not set -CONFIG_MDIO_SUN4I=y -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -# CONFIG_LED_TRIGGER_PHY is not set - -# -# MII PHY device drivers -# -# CONFIG_SFP is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -CONFIG_FIXED_PHY=y -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_TJA11XX_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -CONFIG_INPUT_FF_MEMLESS=y -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADC is not set -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -CONFIG_KEYBOARD_SUN4I_LRADC=y -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CAP11XX is not set -# CONFIG_KEYBOARD_BCM is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ADC is not set -# CONFIG_TOUCHSCREEN_AR1021_I2C is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -CONFIG_TOUCHSCREEN_SUN4I=y -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_ATMEL_CAPTOUCH is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MSM_VIBRATOR is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_GP2A is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -CONFIG_INPUT_AXP20X_PEK=y -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_SERIO_SERPORT=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_SERIO_SUN4I_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_NR_UARTS=8 -CONFIG_SERIAL_8250_RUNTIME_UARTS=8 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_FSL=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_EM is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_OF_PLATFORM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_ST_ASC is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_HVC_DCC is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -CONFIG_I2C_MV64XXX=y -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_SUN6I_P2WI=y -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_MASTER=y -# CONFIG_SPI_MEM is not set - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -CONFIG_SPI_SUN4I=y -CONFIG_SPI_SUN6I=y -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_LOOPBACK_TEST is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_PINCTRL_AXP209 is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SINGLE is not set -# CONFIG_PINCTRL_SX150X is not set -# CONFIG_PINCTRL_STMFX is not set -# CONFIG_PINCTRL_OCELOT is not set -CONFIG_PINCTRL_SUNXI=y -CONFIG_PINCTRL_SUN4I_A10=y -CONFIG_PINCTRL_SUN5I=y -CONFIG_PINCTRL_SUN6I_A31=y -CONFIG_PINCTRL_SUN6I_A31_R=y -CONFIG_PINCTRL_SUN8I_A23=y -CONFIG_PINCTRL_SUN8I_A33=y -CONFIG_PINCTRL_SUN8I_A83T=y -CONFIG_PINCTRL_SUN8I_A83T_R=y -CONFIG_PINCTRL_SUN8I_A23_R=y -CONFIG_PINCTRL_SUN8I_H3=y -CONFIG_PINCTRL_SUN8I_H3_R=y -CONFIG_PINCTRL_SUN8I_V3S=y -CONFIG_PINCTRL_SUN9I_A80=y -CONFIG_PINCTRL_SUN9I_A80_R=y -# CONFIG_PINCTRL_SUN50I_A64 is not set -# CONFIG_PINCTRL_SUN50I_A64_R is not set -# CONFIG_PINCTRL_SUN50I_H5 is not set -# CONFIG_PINCTRL_SUN50I_H6 is not set -# CONFIG_PINCTRL_SUN50I_H6_R is not set -CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIO_SYSFS=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_MPC8XXX is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_ZEVIO is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# CONFIG_HTC_EGPIO is not set -# end of MFD GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_GENERIC_ADC_BATTERY is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_LEGO_EV3 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -CONFIG_CHARGER_AXP20X=y -CONFIG_BATTERY_AXP20X=y -CONFIG_AXP20X_POWER=y -# CONFIG_AXP288_FUEL_GAUGE is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_ISP1704 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_DETECTOR_MAX14656 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24190 is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_UCS1002 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IIO_HWMON is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_OCC_P8_I2C is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_PWM_FAN is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -CONFIG_CPU_THERMAL=y -# CONFIG_CLOCK_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_THERMAL_MMIO is not set -# CONFIG_QORIQ_THERMAL is not set -# CONFIG_GENERIC_ADC_THERMAL is not set -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_GPIO_WATCHDOG is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_FTWDT010_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -CONFIG_SUNXI_WATCHDOG=y -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_MEN_A21_WDT is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -CONFIG_MFD_AC100=y -CONFIG_MFD_AXP20X=y -CONFIG_MFD_AXP20X_I2C=y -CONFIG_MFD_AXP20X_RSB=y -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_ASIC3 is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_PM8XXX is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SUN6I_PRCM=y -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_T7L66XB is not set -# CONFIG_MFD_TC6387XB is not set -# CONFIG_MFD_TC6393XB is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -CONFIG_REGULATOR_FIXED_VOLTAGE=y -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_ANATOP is not set -CONFIG_REGULATOR_AXP20X=y -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -CONFIG_REGULATOR_GPIO=y -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX8973 is not set -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_TPS6524X is not set -# CONFIG_REGULATOR_VCTRL is not set -CONFIG_RC_CORE=y -CONFIG_RC_MAP=y -# CONFIG_LIRC is not set -# CONFIG_RC_DECODERS is not set -CONFIG_RC_DEVICES=y -# CONFIG_RC_ATI_REMOTE is not set -# CONFIG_IR_HIX5HD2 is not set -# CONFIG_IR_IMON is not set -# CONFIG_IR_IMON_RAW is not set -# CONFIG_IR_MCEUSB is not set -# CONFIG_IR_REDRAT3 is not set -# CONFIG_IR_STREAMZAP is not set -# CONFIG_IR_IGORPLUGUSB is not set -# CONFIG_IR_IGUANA is not set -# CONFIG_IR_TTUSBIR is not set -# CONFIG_RC_LOOPBACK is not set -# CONFIG_IR_GPIO_CIR is not set -CONFIG_IR_SUNXI=y -# CONFIG_IR_SERIAL is not set -# CONFIG_IR_SIR is not set -# CONFIG_RC_XBOX_DVD is not set -CONFIG_MEDIA_SUPPORT=y - -# -# Multimedia core support -# -# CONFIG_MEDIA_CAMERA_SUPPORT is not set -# CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set -# CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set -# CONFIG_MEDIA_RADIO_SUPPORT is not set -# CONFIG_MEDIA_SDR_SUPPORT is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_VIDEO_ADV_DEBUG is not set -# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set - -# -# Media drivers -# -# CONFIG_MEDIA_USB_SUPPORT is not set - -# -# Supported MMC/SDIO adapters -# -# CONFIG_CYPRESS_FIRMWARE is not set - -# -# Media ancillary drivers (tuners, sensors, i2c, spi, frontends) -# - -# -# Media SPI Adapters -# -# end of Media SPI Adapters - -# -# Customise DVB Frontends -# - -# -# Tools to develop new frontends -# -# end of Customise DVB Frontends - -# -# Graphics support -# -# CONFIG_IMX_IPUV3_CORE is not set -CONFIG_DRM=y -CONFIG_DRM_MIPI_DSI=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -# CONFIG_DRM_DEBUG_MM is not set -CONFIG_DRM_KMS_HELPER=y -CONFIG_DRM_KMS_FB_HELPER=y -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_FBDEV_OVERALLOC=100 -# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set -# CONFIG_DRM_DP_CEC is not set -CONFIG_DRM_GEM_CMA_HELPER=y -CONFIG_DRM_KMS_CMA_HELPER=y - -# -# I2C encoder or helper chips -# -# CONFIG_DRM_I2C_CH7006 is not set -# CONFIG_DRM_I2C_SIL164 is not set -# CONFIG_DRM_I2C_NXP_TDA998X is not set -# CONFIG_DRM_I2C_NXP_TDA9950 is not set -# end of I2C encoder or helper chips - -# -# ARM devices -# -# CONFIG_DRM_HDLCD is not set -# CONFIG_DRM_MALI_DISPLAY is not set -# CONFIG_DRM_KOMEDA is not set -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# CONFIG_DRM_VGEM is not set -# CONFIG_DRM_VKMS is not set -# CONFIG_DRM_EXYNOS is not set -# CONFIG_DRM_UDL is not set -# CONFIG_DRM_ARMADA is not set -# CONFIG_DRM_RCAR_DW_HDMI is not set -# CONFIG_DRM_RCAR_LVDS is not set -CONFIG_DRM_SUN4I=y -CONFIG_DRM_SUN4I_HDMI=y -# CONFIG_DRM_SUN4I_HDMI_CEC is not set -CONFIG_DRM_SUN4I_BACKEND=y -CONFIG_DRM_SUN6I_DSI=y -# CONFIG_DRM_SUN8I_DW_HDMI is not set -CONFIG_DRM_SUN8I_MIXER=y -CONFIG_DRM_SUN8I_TCON_TOP=y -# CONFIG_DRM_OMAP is not set -# CONFIG_DRM_TILCDC is not set -# CONFIG_DRM_FSL_DCU is not set -# CONFIG_DRM_STM is not set -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_ARM_VERSATILE is not set -# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LB035Q02 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set -# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set -# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set -# CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set -# end of Display Panels - -CONFIG_DRM_BRIDGE=y -CONFIG_DRM_PANEL_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_CDNS_DSI is not set -CONFIG_DRM_DUMB_VGA_DAC=y -# CONFIG_DRM_LVDS_ENCODER is not set -# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_SIL_SII8620 is not set -# CONFIG_DRM_SII902X is not set -# CONFIG_DRM_SII9234 is not set -# CONFIG_DRM_THINE_THC63LVD1024 is not set -# CONFIG_DRM_TOSHIBA_TC358764 is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_TI_TFP410 is not set -# CONFIG_DRM_TI_SN65DSI86 is not set -# CONFIG_DRM_I2C_ADV7511 is not set -# end of Display Interface Bridges - -# CONFIG_DRM_STI is not set -# CONFIG_DRM_ETNAVIV is not set -# CONFIG_DRM_ARCPGU is not set -# CONFIG_DRM_MXSFB is not set -# CONFIG_DRM_GM12U320 is not set -# CONFIG_TINYDRM_HX8357D is not set -# CONFIG_TINYDRM_ILI9225 is not set -# CONFIG_TINYDRM_ILI9341 is not set -# CONFIG_TINYDRM_MI0283QT is not set -# CONFIG_TINYDRM_REPAPER is not set -# CONFIG_TINYDRM_ST7586 is not set -# CONFIG_TINYDRM_ST7735R is not set -# CONFIG_DRM_PL111 is not set -# CONFIG_DRM_TVE200 is not set -# CONFIG_DRM_LIMA is not set -# CONFIG_DRM_PANFROST is not set -# CONFIG_DRM_MCDE is not set -# CONFIG_DRM_LEGACY is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -CONFIG_FB_SIMPLE=y -# CONFIG_FB_SSD1307 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_VIDEOMODE_HELPERS=y -CONFIG_HDMI=y - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -CONFIG_SOUND=y -CONFIG_SND=y -CONFIG_SND_TIMER=y -CONFIG_SND_PCM=y -CONFIG_SND_DMAENGINE_PCM=y -CONFIG_SND_JACK=y -CONFIG_SND_JACK_INPUT_DEV=y -# CONFIG_SND_OSSEMUL is not set -CONFIG_SND_PCM_TIMER=y -# CONFIG_SND_HRTIMER is not set -# CONFIG_SND_DYNAMIC_MINORS is not set -CONFIG_SND_SUPPORT_OLD_API=y -CONFIG_SND_PROC_FS=y -CONFIG_SND_VERBOSE_PROCFS=y -# CONFIG_SND_VERBOSE_PRINTK is not set -# CONFIG_SND_DEBUG is not set -# CONFIG_SND_SEQUENCER is not set -CONFIG_SND_DRIVERS=y -# CONFIG_SND_DUMMY is not set -# CONFIG_SND_ALOOP is not set -# CONFIG_SND_MTPAV is not set -# CONFIG_SND_SERIAL_U16550 is not set -# CONFIG_SND_MPU401 is not set - -# -# HD-Audio -# -# end of HD-Audio - -CONFIG_SND_HDA_PREALLOC_SIZE=64 -CONFIG_SND_ARM=y -CONFIG_SND_SPI=y -CONFIG_SND_USB=y -# CONFIG_SND_USB_AUDIO is not set -# CONFIG_SND_USB_UA101 is not set -# CONFIG_SND_USB_CAIAQ is not set -# CONFIG_SND_USB_6FIRE is not set -# CONFIG_SND_USB_HIFACE is not set -# CONFIG_SND_BCD2000 is not set -# CONFIG_SND_USB_POD is not set -# CONFIG_SND_USB_PODHD is not set -# CONFIG_SND_USB_TONEPORT is not set -# CONFIG_SND_USB_VARIAX is not set -CONFIG_SND_SOC=y -CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y -# CONFIG_SND_SOC_AMD_ACP is not set -# CONFIG_SND_ATMEL_SOC is not set -# CONFIG_SND_DESIGNWARE_I2S is not set - -# -# SoC Audio for Freescale CPUs -# - -# -# Common SoC Audio options for Freescale CPUs: -# -# CONFIG_SND_SOC_FSL_ASRC is not set -# CONFIG_SND_SOC_FSL_SAI is not set -# CONFIG_SND_SOC_FSL_AUDMIX is not set -# CONFIG_SND_SOC_FSL_SSI is not set -# CONFIG_SND_SOC_FSL_SPDIF is not set -# CONFIG_SND_SOC_FSL_ESAI is not set -# CONFIG_SND_SOC_FSL_MICFIL is not set -# CONFIG_SND_SOC_IMX_AUDMUX is not set -# end of SoC Audio for Freescale CPUs - -# CONFIG_SND_I2S_HI6210_I2S is not set -# CONFIG_SND_SOC_IMG is not set -# CONFIG_SND_SOC_MTK_BTCVSD is not set -# CONFIG_SND_SOC_SOF_TOPLEVEL is not set - -# -# STMicroelectronics STM32 SOC audio support -# -# end of STMicroelectronics STM32 SOC audio support - -# -# Allwinner SoC Audio support -# -CONFIG_SND_SUN4I_CODEC=y -# CONFIG_SND_SUN8I_CODEC is not set -# CONFIG_SND_SUN8I_CODEC_ANALOG is not set -# CONFIG_SND_SUN4I_I2S is not set -# CONFIG_SND_SUN4I_SPDIF is not set -# end of Allwinner SoC Audio support - -# CONFIG_SND_SOC_XILINX_I2S is not set -# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set -# CONFIG_SND_SOC_XILINX_SPDIF is not set -# CONFIG_SND_SOC_XTFPGA_I2S is not set -# CONFIG_ZX_TDM is not set -CONFIG_SND_SOC_I2C_AND_SPI=y - -# -# CODEC drivers -# -# CONFIG_SND_SOC_AC97_CODEC is not set -# CONFIG_SND_SOC_ADAU1701 is not set -# CONFIG_SND_SOC_ADAU1761_I2C is not set -# CONFIG_SND_SOC_ADAU1761_SPI is not set -# CONFIG_SND_SOC_ADAU7002 is not set -# CONFIG_SND_SOC_AK4104 is not set -# CONFIG_SND_SOC_AK4118 is not set -# CONFIG_SND_SOC_AK4458 is not set -# CONFIG_SND_SOC_AK4554 is not set -# CONFIG_SND_SOC_AK4613 is not set -# CONFIG_SND_SOC_AK4642 is not set -# CONFIG_SND_SOC_AK5386 is not set -# CONFIG_SND_SOC_AK5558 is not set -# CONFIG_SND_SOC_ALC5623 is not set -# CONFIG_SND_SOC_BD28623 is not set -# CONFIG_SND_SOC_BT_SCO is not set -# CONFIG_SND_SOC_CS35L32 is not set -# CONFIG_SND_SOC_CS35L33 is not set -# CONFIG_SND_SOC_CS35L34 is not set -# CONFIG_SND_SOC_CS35L35 is not set -# CONFIG_SND_SOC_CS35L36 is not set -# CONFIG_SND_SOC_CS42L42 is not set -# CONFIG_SND_SOC_CS42L51_I2C is not set -# CONFIG_SND_SOC_CS42L52 is not set -# CONFIG_SND_SOC_CS42L56 is not set -# CONFIG_SND_SOC_CS42L73 is not set -# CONFIG_SND_SOC_CS4265 is not set -# CONFIG_SND_SOC_CS4270 is not set -# CONFIG_SND_SOC_CS4271_I2C is not set -# CONFIG_SND_SOC_CS4271_SPI is not set -# CONFIG_SND_SOC_CS42XX8_I2C is not set -# CONFIG_SND_SOC_CS43130 is not set -# CONFIG_SND_SOC_CS4341 is not set -# CONFIG_SND_SOC_CS4349 is not set -# CONFIG_SND_SOC_CS53L30 is not set -# CONFIG_SND_SOC_CX2072X is not set -# CONFIG_SND_SOC_DMIC is not set -# CONFIG_SND_SOC_ES7134 is not set -# CONFIG_SND_SOC_ES7241 is not set -# CONFIG_SND_SOC_ES8316 is not set -# CONFIG_SND_SOC_ES8328_I2C is not set -# CONFIG_SND_SOC_ES8328_SPI is not set -# CONFIG_SND_SOC_GTM601 is not set -# CONFIG_SND_SOC_INNO_RK3036 is not set -# CONFIG_SND_SOC_MAX98088 is not set -# CONFIG_SND_SOC_MAX98357A is not set -# CONFIG_SND_SOC_MAX98504 is not set -# CONFIG_SND_SOC_MAX9867 is not set -# CONFIG_SND_SOC_MAX98927 is not set -# CONFIG_SND_SOC_MAX98373 is not set -# CONFIG_SND_SOC_MAX9860 is not set -# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set -# CONFIG_SND_SOC_PCM1681 is not set -# CONFIG_SND_SOC_PCM1789_I2C is not set -# CONFIG_SND_SOC_PCM179X_I2C is not set -# CONFIG_SND_SOC_PCM179X_SPI is not set -# CONFIG_SND_SOC_PCM186X_I2C is not set -# CONFIG_SND_SOC_PCM186X_SPI is not set -# CONFIG_SND_SOC_PCM3060_I2C is not set -# CONFIG_SND_SOC_PCM3060_SPI is not set -# CONFIG_SND_SOC_PCM3168A_I2C is not set -# CONFIG_SND_SOC_PCM3168A_SPI is not set -# CONFIG_SND_SOC_PCM512x_I2C is not set -# CONFIG_SND_SOC_PCM512x_SPI is not set -# CONFIG_SND_SOC_RK3328 is not set -# CONFIG_SND_SOC_RT5616 is not set -# CONFIG_SND_SOC_RT5631 is not set -# CONFIG_SND_SOC_SGTL5000 is not set -# CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set -# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set -# CONFIG_SND_SOC_SPDIF is not set -# CONFIG_SND_SOC_SSM2305 is not set -# CONFIG_SND_SOC_SSM2602_SPI is not set -# CONFIG_SND_SOC_SSM2602_I2C is not set -# CONFIG_SND_SOC_SSM4567 is not set -# CONFIG_SND_SOC_STA32X is not set -# CONFIG_SND_SOC_STA350 is not set -# CONFIG_SND_SOC_STI_SAS is not set -# CONFIG_SND_SOC_TAS2552 is not set -# CONFIG_SND_SOC_TAS5086 is not set -# CONFIG_SND_SOC_TAS571X is not set -# CONFIG_SND_SOC_TAS5720 is not set -# CONFIG_SND_SOC_TAS6424 is not set -# CONFIG_SND_SOC_TDA7419 is not set -# CONFIG_SND_SOC_TFA9879 is not set -# CONFIG_SND_SOC_TLV320AIC23_I2C is not set -# CONFIG_SND_SOC_TLV320AIC23_SPI is not set -# CONFIG_SND_SOC_TLV320AIC31XX is not set -# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set -# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set -# CONFIG_SND_SOC_TLV320AIC3X is not set -# CONFIG_SND_SOC_TS3A227E is not set -# CONFIG_SND_SOC_TSCS42XX is not set -# CONFIG_SND_SOC_TSCS454 is not set -# CONFIG_SND_SOC_UDA1334 is not set -# CONFIG_SND_SOC_WM8510 is not set -# CONFIG_SND_SOC_WM8523 is not set -# CONFIG_SND_SOC_WM8524 is not set -# CONFIG_SND_SOC_WM8580 is not set -# CONFIG_SND_SOC_WM8711 is not set -# CONFIG_SND_SOC_WM8728 is not set -# CONFIG_SND_SOC_WM8731 is not set -# CONFIG_SND_SOC_WM8737 is not set -# CONFIG_SND_SOC_WM8741 is not set -# CONFIG_SND_SOC_WM8750 is not set -# CONFIG_SND_SOC_WM8753 is not set -# CONFIG_SND_SOC_WM8770 is not set -# CONFIG_SND_SOC_WM8776 is not set -# CONFIG_SND_SOC_WM8782 is not set -# CONFIG_SND_SOC_WM8804_I2C is not set -# CONFIG_SND_SOC_WM8804_SPI is not set -# CONFIG_SND_SOC_WM8903 is not set -# CONFIG_SND_SOC_WM8904 is not set -# CONFIG_SND_SOC_WM8960 is not set -# CONFIG_SND_SOC_WM8962 is not set -# CONFIG_SND_SOC_WM8974 is not set -# CONFIG_SND_SOC_WM8978 is not set -# CONFIG_SND_SOC_WM8985 is not set -# CONFIG_SND_SOC_ZX_AUD96P22 is not set -# CONFIG_SND_SOC_MAX9759 is not set -# CONFIG_SND_SOC_MT6351 is not set -# CONFIG_SND_SOC_MT6358 is not set -# CONFIG_SND_SOC_NAU8540 is not set -# CONFIG_SND_SOC_NAU8810 is not set -# CONFIG_SND_SOC_NAU8822 is not set -# CONFIG_SND_SOC_NAU8824 is not set -# CONFIG_SND_SOC_TPA6130A2 is not set -# end of CODEC drivers - -# CONFIG_SND_SIMPLE_CARD is not set -# CONFIG_SND_AUDIO_GRAPH_CARD is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -CONFIG_HID_A4TECH=y -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -CONFIG_HID_APPLE=y -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -CONFIG_HID_BELKIN=y -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -CONFIG_HID_CHERRY=y -CONFIG_HID_CHICONY=y -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_PRODIKEYS is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -CONFIG_HID_CYPRESS=y -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -CONFIG_HID_EZKEY=y -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -CONFIG_HID_ITE=y -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -CONFIG_HID_KENSINGTON=y -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -CONFIG_HID_LOGITECH=y -# CONFIG_HID_LOGITECH_HIDPP is not set -# CONFIG_LOGITECH_FF is not set -# CONFIG_LOGIRUMBLEPAD2_FF is not set -# CONFIG_LOGIG940_FF is not set -# CONFIG_LOGIWHEELS_FF is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -CONFIG_HID_REDRAGON=y -CONFIG_HID_MICROSOFT=y -CONFIG_HID_MONTEREY=y -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -# CONFIG_USB_XHCI_HCD is not set -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -# CONFIG_USB_STORAGE is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -CONFIG_USB_MUSB_HDRC=y -# CONFIG_USB_MUSB_HOST is not set -# CONFIG_USB_MUSB_GADGET is not set -CONFIG_USB_MUSB_DUAL_ROLE=y - -# -# Platform Glue Layer -# -CONFIG_USB_MUSB_SUNXI=y - -# -# MUSB DMA mode -# -# CONFIG_MUSB_PIO_ONLY is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_RIO500 is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -CONFIG_USB_PHY=y -CONFIG_NOP_USB_XCEIV=y -# CONFIG_AM335X_PHY_USB is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# CONFIG_USB_ULPI is not set -# end of USB Physical Layer drivers - -CONFIG_USB_GADGET=y -# CONFIG_USB_GADGET_DEBUG_FILES is not set -# CONFIG_USB_GADGET_DEBUG_FS is not set -CONFIG_USB_GADGET_VBUS_DRAW=2 -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 - -# -# USB Peripheral Controller -# -# CONFIG_USB_FUSB300 is not set -# CONFIG_USB_FOTG210_UDC is not set -# CONFIG_USB_GR_UDC is not set -# CONFIG_USB_R8A66597 is not set -# CONFIG_USB_PXA27X is not set -# CONFIG_USB_MV_UDC is not set -# CONFIG_USB_MV_U3D is not set -# CONFIG_USB_SNP_UDC_PLAT is not set -# CONFIG_USB_M66592 is not set -# CONFIG_USB_BDC_UDC is not set -# CONFIG_USB_NET2272 is not set -# CONFIG_USB_GADGET_XILINX is not set -# CONFIG_USB_DUMMY_HCD is not set -# end of USB Peripheral Controller - -# CONFIG_USB_CONFIGFS is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_PWRSEQ_EMMC=y -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SPI is not set -# CONFIG_MMC_DW is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -CONFIG_MMC_SUNXI=y -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_SYSCON is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_DISK is not set -CONFIG_LEDS_TRIGGER_HEARTBEAT=y -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -CONFIG_LEDS_TRIGGER_DEFAULT_ON=y - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -# CONFIG_RTC_INTF_SYSFS is not set -# CONFIG_RTC_INTF_PROC is not set -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -CONFIG_RTC_DRV_AC100=y -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_HYM8563 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_ISL12026 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RX6110 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -# CONFIG_RTC_DRV_CMOS is not set -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set -# CONFIG_RTC_DRV_ZYNQMP is not set - -# -# on-CPU RTC drivers -# -CONFIG_RTC_DRV_SUN6I=y -CONFIG_RTC_DRV_SUNXI=y -# CONFIG_RTC_DRV_CADENCE is not set -# CONFIG_RTC_DRV_FTRTC010 is not set -# CONFIG_RTC_DRV_SNVS is not set -# CONFIG_RTC_DRV_R7301 is not set - -# -# HID Sensor RTC drivers -# -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DMA_SUN4I=y -CONFIG_DMA_SUN6I=y -# CONFIG_DW_AXI_DMAC is not set -# CONFIG_FSL_EDMA is not set -# CONFIG_FSL_QDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_NBPFAXI_DMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_SELFTESTS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO_MENU=y -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_CLK_HSDK is not set -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_CLK_QORIQ is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_SUNXI=y -CONFIG_CLK_SUNXI_CLOCKS=y -CONFIG_CLK_SUNXI_PRCM_SUN6I=y -CONFIG_CLK_SUNXI_PRCM_SUN8I=y -CONFIG_CLK_SUNXI_PRCM_SUN9I=y -CONFIG_SUNXI_CCU=y -CONFIG_SUN4I_A10_CCU=y -CONFIG_SUN5I_CCU=y -CONFIG_SUN6I_A31_CCU=y -CONFIG_SUN8I_A23_CCU=y -CONFIG_SUN8I_A33_CCU=y -CONFIG_SUN8I_A83T_CCU=y -CONFIG_SUN8I_H3_CCU=y -CONFIG_SUN8I_V3S_CCU=y -CONFIG_SUN8I_DE2_CCU=y -CONFIG_SUN8I_R40_CCU=y -CONFIG_SUN9I_A80_CCU=y -CONFIG_SUN8I_R_CCU=y -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_CLKSRC_MMIO=y -CONFIG_SUN4I_TIMER=y -CONFIG_SUN5I_HSTIMER=y -CONFIG_ARM_ARCH_TIMER=y -CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SUNXI_SRAM=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -CONFIG_EXTCON=y - -# -# Extcon Device Drivers -# -# CONFIG_EXTCON_ADC_JACK is not set -# CONFIG_EXTCON_FSA9480 is not set -# CONFIG_EXTCON_GPIO is not set -# CONFIG_EXTCON_MAX3355 is not set -# CONFIG_EXTCON_PTN5150 is not set -# CONFIG_EXTCON_RT8973A is not set -# CONFIG_EXTCON_SM5502 is not set -# CONFIG_EXTCON_USB_GPIO is not set -# CONFIG_MEMORY is not set -CONFIG_IIO=y -# CONFIG_IIO_BUFFER is not set -# CONFIG_IIO_CONFIGFS is not set -# CONFIG_IIO_TRIGGER is not set -# CONFIG_IIO_SW_DEVICE is not set -# CONFIG_IIO_SW_TRIGGER is not set - -# -# Accelerometers -# -# CONFIG_ADIS16201 is not set -# CONFIG_ADIS16209 is not set -# CONFIG_ADXL345_I2C is not set -# CONFIG_ADXL345_SPI is not set -# CONFIG_ADXL372_SPI is not set -# CONFIG_ADXL372_I2C is not set -# CONFIG_BMA180 is not set -# CONFIG_BMA220 is not set -# CONFIG_BMC150_ACCEL is not set -# CONFIG_DA280 is not set -# CONFIG_DA311 is not set -# CONFIG_DMARD06 is not set -# CONFIG_DMARD09 is not set -# CONFIG_DMARD10 is not set -# CONFIG_IIO_ST_ACCEL_3AXIS is not set -# CONFIG_KXSD9 is not set -# CONFIG_KXCJK1013 is not set -# CONFIG_MC3230 is not set -# CONFIG_MMA7455_I2C is not set -# CONFIG_MMA7455_SPI is not set -# CONFIG_MMA7660 is not set -# CONFIG_MMA8452 is not set -# CONFIG_MMA9551 is not set -# CONFIG_MMA9553 is not set -# CONFIG_MXC4005 is not set -# CONFIG_MXC6255 is not set -# CONFIG_SCA3000 is not set -# CONFIG_STK8312 is not set -# CONFIG_STK8BA50 is not set -# end of Accelerometers - -# -# Analog to digital converters -# -# CONFIG_AD7124 is not set -# CONFIG_AD7266 is not set -# CONFIG_AD7291 is not set -# CONFIG_AD7298 is not set -# CONFIG_AD7476 is not set -# CONFIG_AD7606_IFACE_PARALLEL is not set -# CONFIG_AD7606_IFACE_SPI is not set -# CONFIG_AD7766 is not set -# CONFIG_AD7768_1 is not set -# CONFIG_AD7780 is not set -# CONFIG_AD7791 is not set -# CONFIG_AD7793 is not set -# CONFIG_AD7887 is not set -# CONFIG_AD7923 is not set -# CONFIG_AD7949 is not set -# CONFIG_AD799X is not set -CONFIG_AXP20X_ADC=y -# CONFIG_AXP288_ADC is not set -# CONFIG_CC10001_ADC is not set -# CONFIG_ENVELOPE_DETECTOR is not set -# CONFIG_HI8435 is not set -# CONFIG_HX711 is not set -# CONFIG_INA2XX_ADC is not set -# CONFIG_LTC2471 is not set -# CONFIG_LTC2485 is not set -# CONFIG_LTC2497 is not set -# CONFIG_MAX1027 is not set -# CONFIG_MAX11100 is not set -# CONFIG_MAX1118 is not set -# CONFIG_MAX1363 is not set -# CONFIG_MAX9611 is not set -# CONFIG_MCP320X is not set -# CONFIG_MCP3422 is not set -# CONFIG_MCP3911 is not set -# CONFIG_NAU7802 is not set -# CONFIG_SD_ADC_MODULATOR is not set -# CONFIG_SUN4I_GPADC is not set -# CONFIG_TI_ADC081C is not set -# CONFIG_TI_ADC0832 is not set -# CONFIG_TI_ADC084S021 is not set -# CONFIG_TI_ADC12138 is not set -# CONFIG_TI_ADC108S102 is not set -# CONFIG_TI_ADC128S052 is not set -# CONFIG_TI_ADC161S626 is not set -# CONFIG_TI_ADS1015 is not set -# CONFIG_TI_ADS7950 is not set -# CONFIG_TI_ADS8344 is not set -# CONFIG_TI_ADS8688 is not set -# CONFIG_TI_ADS124S08 is not set -# CONFIG_TI_TLC4541 is not set -# CONFIG_VF610_ADC is not set -# CONFIG_XILINX_XADC is not set -# end of Analog to digital converters - -# -# Analog Front Ends -# -# CONFIG_IIO_RESCALE is not set -# end of Analog Front Ends - -# -# Amplifiers -# -# CONFIG_AD8366 is not set -# end of Amplifiers - -# -# Chemical Sensors -# -# CONFIG_ATLAS_PH_SENSOR is not set -# CONFIG_BME680 is not set -# CONFIG_CCS811 is not set -# CONFIG_IAQCORE is not set -# CONFIG_SENSIRION_SGP30 is not set -# CONFIG_SPS30 is not set -# CONFIG_VZ89X is not set -# end of Chemical Sensors - -# -# Hid Sensor IIO Common -# -# end of Hid Sensor IIO Common - -# -# SSP Sensor Common -# -# CONFIG_IIO_SSP_SENSORHUB is not set -# end of SSP Sensor Common - -# -# Digital to analog converters -# -# CONFIG_AD5064 is not set -# CONFIG_AD5360 is not set -# CONFIG_AD5380 is not set -# CONFIG_AD5421 is not set -# CONFIG_AD5446 is not set -# CONFIG_AD5449 is not set -# CONFIG_AD5592R is not set -# CONFIG_AD5593R is not set -# CONFIG_AD5504 is not set -# CONFIG_AD5624R_SPI is not set -# CONFIG_LTC1660 is not set -# CONFIG_LTC2632 is not set -# CONFIG_AD5686_SPI is not set -# CONFIG_AD5696_I2C is not set -# CONFIG_AD5755 is not set -# CONFIG_AD5758 is not set -# CONFIG_AD5761 is not set -# CONFIG_AD5764 is not set -# CONFIG_AD5791 is not set -# CONFIG_AD7303 is not set -# CONFIG_AD8801 is not set -# CONFIG_DPOT_DAC is not set -# CONFIG_DS4424 is not set -# CONFIG_M62332 is not set -# CONFIG_MAX517 is not set -# CONFIG_MAX5821 is not set -# CONFIG_MCP4725 is not set -# CONFIG_MCP4922 is not set -# CONFIG_TI_DAC082S085 is not set -# CONFIG_TI_DAC5571 is not set -# CONFIG_TI_DAC7311 is not set -# CONFIG_TI_DAC7612 is not set -# CONFIG_VF610_DAC is not set -# end of Digital to analog converters - -# -# IIO dummy driver -# -# end of IIO dummy driver - -# -# Frequency Synthesizers DDS/PLL -# - -# -# Clock Generator/Distribution -# -# CONFIG_AD9523 is not set -# end of Clock Generator/Distribution - -# -# Phase-Locked Loop (PLL) frequency synthesizers -# -# CONFIG_ADF4350 is not set -# CONFIG_ADF4371 is not set -# end of Phase-Locked Loop (PLL) frequency synthesizers -# end of Frequency Synthesizers DDS/PLL - -# -# Digital gyroscope sensors -# -# CONFIG_ADIS16080 is not set -# CONFIG_ADIS16130 is not set -# CONFIG_ADIS16136 is not set -# CONFIG_ADIS16260 is not set -# CONFIG_ADXRS450 is not set -# CONFIG_BMG160 is not set -# CONFIG_FXAS21002C is not set -# CONFIG_MPU3050_I2C is not set -# CONFIG_IIO_ST_GYRO_3AXIS is not set -# CONFIG_ITG3200 is not set -# end of Digital gyroscope sensors - -# -# Health Sensors -# - -# -# Heart Rate Monitors -# -# CONFIG_AFE4403 is not set -# CONFIG_AFE4404 is not set -# CONFIG_MAX30100 is not set -# CONFIG_MAX30102 is not set -# end of Heart Rate Monitors -# end of Health Sensors - -# -# Humidity sensors -# -# CONFIG_AM2315 is not set -# CONFIG_DHT11 is not set -# CONFIG_HDC100X is not set -# CONFIG_HTS221 is not set -# CONFIG_HTU21 is not set -# CONFIG_SI7005 is not set -# CONFIG_SI7020 is not set -# end of Humidity sensors - -# -# Inertial measurement units -# -# CONFIG_ADIS16400 is not set -# CONFIG_ADIS16460 is not set -# CONFIG_ADIS16480 is not set -# CONFIG_BMI160_I2C is not set -# CONFIG_BMI160_SPI is not set -# CONFIG_KMX61 is not set -# CONFIG_INV_MPU6050_SPI is not set -# CONFIG_IIO_ST_LSM6DSX is not set -# end of Inertial measurement units - -# -# Light sensors -# -# CONFIG_ADJD_S311 is not set -# CONFIG_AL3320A is not set -# CONFIG_APDS9300 is not set -# CONFIG_APDS9960 is not set -# CONFIG_BH1750 is not set -# CONFIG_BH1780 is not set -# CONFIG_CM32181 is not set -# CONFIG_CM3232 is not set -# CONFIG_CM3323 is not set -# CONFIG_CM3605 is not set -# CONFIG_CM36651 is not set -# CONFIG_GP2AP020A00F is not set -# CONFIG_SENSORS_ISL29018 is not set -# CONFIG_SENSORS_ISL29028 is not set -# CONFIG_ISL29125 is not set -# CONFIG_JSA1212 is not set -# CONFIG_RPR0521 is not set -# CONFIG_LTR501 is not set -# CONFIG_LV0104CS is not set -# CONFIG_MAX44000 is not set -# CONFIG_MAX44009 is not set -# CONFIG_NOA1305 is not set -# CONFIG_OPT3001 is not set -# CONFIG_PA12203001 is not set -# CONFIG_SI1133 is not set -# CONFIG_SI1145 is not set -# CONFIG_STK3310 is not set -# CONFIG_ST_UVIS25 is not set -# CONFIG_TCS3414 is not set -# CONFIG_TCS3472 is not set -# CONFIG_SENSORS_TSL2563 is not set -# CONFIG_TSL2583 is not set -# CONFIG_TSL2772 is not set -# CONFIG_TSL4531 is not set -# CONFIG_US5182D is not set -# CONFIG_VCNL4000 is not set -# CONFIG_VCNL4035 is not set -# CONFIG_VEML6070 is not set -# CONFIG_VL6180 is not set -# CONFIG_ZOPT2201 is not set -# end of Light sensors - -# -# Magnetometer sensors -# -# CONFIG_AK8974 is not set -# CONFIG_AK8975 is not set -# CONFIG_AK09911 is not set -# CONFIG_BMC150_MAGN_I2C is not set -# CONFIG_BMC150_MAGN_SPI is not set -# CONFIG_MAG3110 is not set -# CONFIG_MMC35240 is not set -# CONFIG_IIO_ST_MAGN_3AXIS is not set -# CONFIG_SENSORS_HMC5843_I2C is not set -# CONFIG_SENSORS_HMC5843_SPI is not set -# CONFIG_SENSORS_RM3100_I2C is not set -# CONFIG_SENSORS_RM3100_SPI is not set -# end of Magnetometer sensors - -# -# Multiplexers -# -# CONFIG_IIO_MUX is not set -# end of Multiplexers - -# -# Inclinometer sensors -# -# end of Inclinometer sensors - -# -# Digital potentiometers -# -# CONFIG_AD5272 is not set -# CONFIG_DS1803 is not set -# CONFIG_MAX5432 is not set -# CONFIG_MAX5481 is not set -# CONFIG_MAX5487 is not set -# CONFIG_MCP4018 is not set -# CONFIG_MCP4131 is not set -# CONFIG_MCP4531 is not set -# CONFIG_MCP41010 is not set -# CONFIG_TPL0102 is not set -# end of Digital potentiometers - -# -# Digital potentiostats -# -# CONFIG_LMP91000 is not set -# end of Digital potentiostats - -# -# Pressure sensors -# -# CONFIG_ABP060MG is not set -# CONFIG_BMP280 is not set -# CONFIG_DPS310 is not set -# CONFIG_HP03 is not set -# CONFIG_MPL115_I2C is not set -# CONFIG_MPL115_SPI is not set -# CONFIG_MPL3115 is not set -# CONFIG_MS5611 is not set -# CONFIG_MS5637 is not set -# CONFIG_IIO_ST_PRESS is not set -# CONFIG_T5403 is not set -# CONFIG_HP206C is not set -# CONFIG_ZPA2326 is not set -# end of Pressure sensors - -# -# Lightning sensors -# -# CONFIG_AS3935 is not set -# end of Lightning sensors - -# -# Proximity and distance sensors -# -# CONFIG_ISL29501 is not set -# CONFIG_LIDAR_LITE_V2 is not set -# CONFIG_MB1232 is not set -# CONFIG_RFD77402 is not set -# CONFIG_SRF04 is not set -# CONFIG_SX9500 is not set -# CONFIG_SRF08 is not set -# CONFIG_VL53L0X_I2C is not set -# end of Proximity and distance sensors - -# -# Resolver to digital converters -# -# CONFIG_AD2S90 is not set -# CONFIG_AD2S1200 is not set -# end of Resolver to digital converters - -# -# Temperature sensors -# -# CONFIG_MAXIM_THERMOCOUPLE is not set -# CONFIG_MLX90614 is not set -# CONFIG_MLX90632 is not set -# CONFIG_TMP006 is not set -# CONFIG_TMP007 is not set -# CONFIG_TSYS01 is not set -# CONFIG_TSYS02D is not set -# CONFIG_MAX31856 is not set -# end of Temperature sensors - -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set -CONFIG_PWM_SUN4I=y - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_GIC=y -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_AL_FIC is not set -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_ARCH_HAS_RESET_CONTROLLER=y -CONFIG_RESET_CONTROLLER=y -CONFIG_RESET_SIMPLE=y -CONFIG_RESET_SUNXI=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_GENERIC_PHY_MIPI_DPHY=y -CONFIG_PHY_SUN4I_USB=y -CONFIG_PHY_SUN6I_MIPI_DPHY=y -CONFIG_PHY_SUN9I_USB=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_DP is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_CPCAP_USB is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_ARM_CCI_PMU is not set -# CONFIG_ARM_CCN is not set -CONFIG_ARM_PMU=y -# end of Performance monitor support - -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -CONFIG_NVMEM_SUNXI_SID=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -# CONFIG_TMPFS_XATTR is not set -CONFIG_MEMFD_CREATE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=y -CONFIG_NFS_V2=y -CONFIG_NFS_V3=y -CONFIG_NFS_V3_ACL=y -CONFIG_NFS_V4=y -# CONFIG_NFS_SWAP is not set -# CONFIG_NFS_V4_1 is not set -CONFIG_ROOT_NFS=y -# CONFIG_NFS_USE_LEGACY_DNS is not set -CONFIG_NFS_USE_KERNEL_DNS=y -# CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=y -CONFIG_LOCKD=y -CONFIG_LOCKD_V4=y -CONFIG_NFS_ACL_SUPPORT=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=y -CONFIG_SUNRPC_GSS=y -# CONFIG_SUNRPC_DEBUG is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -CONFIG_CRYPTO_LIB_DES=y -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_SUN4I_SS=y -# CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_CCREE is not set -# CONFIG_ASYMMETRIC_KEY_TYPE is not set - -# -# Certificates for signature checking -# -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_CRC_CCITT=y -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y -CONFIG_DMA_REMAP=y -CONFIG_DMA_CMA=y - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=16 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_OID_REGISTRY=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_DYNAMIC_DEBUG is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# end of Compile-time checks and compiler options - -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_KERNEL is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_SLUB_DEBUG_ON is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -CONFIG_DEBUG_MEMORY_INIT=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set - -# -# Debug Lockups and Hangs -# -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -CONFIG_DEBUG_BUGVERBOSE=y - -# -# RCU Debugging -# -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# end of RCU Debugging - -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_VMALLOC is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_TEST_BLACKHOLE_DEV is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_TEST_KMOD is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_ARM=y -CONFIG_ARM_UNWIND=y -# CONFIG_DEBUG_USER is not set -CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" -CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" -# CONFIG_PID_IN_CONTEXTIDR is not set -# CONFIG_CORESIGHT is not set -# end of Kernel hacking diff --git a/mainboards/cubie/board/cpu.config-5.4.0 b/mainboards/cubie/board/cpu.config-5.4.0 deleted file mode 100644 index 6a3a5fc2..00000000 --- a/mainboards/cubie/board/cpu.config-5.4.0 +++ /dev/null @@ -1,4501 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm 5.9.0-rc7 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) 7.5.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -CONFIG_NO_HZ=y -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_SCHED_THERMAL_PRESSURE=y -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CGROUPS=y -# CONFIG_MEMCG is not set -# CONFIG_BLK_CGROUP is not set -# CONFIG_CGROUP_SCHED is not set -# CONFIG_CGROUP_PIDS is not set -# CONFIG_CGROUP_RDMA is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_DEVICE is not set -# CONFIG_CGROUP_CPUACCT is not set -# CONFIG_CGROUP_PERF is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_RD_ZSTD=y -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y -CONFIG_BPF=y -# CONFIG_EXPERT is not set -CONFIG_UID16=y -CONFIG_MULTIUSER=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -CONFIG_PERF_USE_VMALLOC=y - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -CONFIG_SLUB_DEBUG=y -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_ARM=y -CONFIG_ARM_HAS_SG_CHAIN=y -CONFIG_SYS_SUPPORTS_APM_EMULATION=y -CONFIG_HAVE_PROC_CPU=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_ARM_PATCH_PHYS_VIRT=y -CONFIG_GENERIC_BUG=y -CONFIG_PGTABLE_LEVELS=2 - -# -# System Type -# -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_BITS_MAX=16 -CONFIG_ARCH_MULTIPLATFORM=y -# CONFIG_ARCH_EBSA110 is not set -# CONFIG_ARCH_EP93XX is not set -# CONFIG_ARCH_FOOTBRIDGE is not set -# CONFIG_ARCH_IOP32X is not set -# CONFIG_ARCH_IXP4XX is not set -# CONFIG_ARCH_DOVE is not set -# CONFIG_ARCH_PXA is not set -# CONFIG_ARCH_RPC is not set -# CONFIG_ARCH_SA1100 is not set -# CONFIG_ARCH_S3C24XX is not set -# CONFIG_ARCH_OMAP1 is not set - -# -# Multiple platform selection -# - -# -# CPU Core family selection -# -# CONFIG_ARCH_MULTI_V6 is not set -CONFIG_ARCH_MULTI_V7=y -CONFIG_ARCH_MULTI_V6_V7=y -# end of Multiple platform selection - -# CONFIG_ARCH_VIRT is not set -# CONFIG_ARCH_ACTIONS is not set -# CONFIG_ARCH_ALPINE is not set -# CONFIG_ARCH_ARTPEC is not set -# CONFIG_ARCH_ASPEED is not set -# CONFIG_ARCH_AT91 is not set -# CONFIG_ARCH_BCM is not set -# CONFIG_ARCH_BERLIN is not set -# CONFIG_ARCH_DIGICOLOR is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_HIGHBANK is not set -# CONFIG_ARCH_HISI is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_KEYSTONE is not set -# CONFIG_ARCH_MEDIATEK is not set -# CONFIG_ARCH_MESON is not set -# CONFIG_ARCH_MILBEAUT is not set -# CONFIG_ARCH_MMP is not set -# CONFIG_ARCH_MSTARV7 is not set -# CONFIG_ARCH_MVEBU is not set -# CONFIG_ARCH_NPCM is not set - -# -# TI OMAP/AM/DM/DRA Family -# -# CONFIG_ARCH_OMAP3 is not set -# CONFIG_ARCH_OMAP4 is not set -# CONFIG_SOC_OMAP5 is not set -# CONFIG_SOC_AM33XX is not set -# CONFIG_SOC_AM43XX is not set -# CONFIG_SOC_DRA7XX is not set -# end of TI OMAP/AM/DM/DRA Family - -# CONFIG_ARCH_SIRF is not set -# CONFIG_ARCH_QCOM is not set -# CONFIG_ARCH_RDA is not set -# CONFIG_ARCH_REALTEK is not set -# CONFIG_ARCH_REALVIEW is not set -# CONFIG_ARCH_ROCKCHIP is not set -# CONFIG_ARCH_S5PV210 is not set -# CONFIG_ARCH_RENESAS is not set -# CONFIG_ARCH_SOCFPGA is not set -# CONFIG_PLAT_SPEAR is not set -# CONFIG_ARCH_STI is not set -# CONFIG_ARCH_STM32 is not set -CONFIG_ARCH_SUNXI=y -CONFIG_MACH_SUN4I=y -CONFIG_MACH_SUN5I=y -CONFIG_MACH_SUN6I=y -CONFIG_MACH_SUN7I=y -CONFIG_MACH_SUN8I=y -CONFIG_MACH_SUN9I=y -CONFIG_ARCH_SUNXI_MC_SMP=y -# CONFIG_ARCH_TANGO is not set -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_UNIPHIER is not set -# CONFIG_ARCH_U8500 is not set -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_WM8850 is not set -# CONFIG_ARCH_ZX is not set -# CONFIG_ARCH_ZYNQ is not set - -# -# Processor Type -# -CONFIG_CPU_V7=y -CONFIG_CPU_THUMB_CAPABLE=y -CONFIG_CPU_32v6K=y -CONFIG_CPU_32v7=y -CONFIG_CPU_ABRT_EV7=y -CONFIG_CPU_PABRT_V7=y -CONFIG_CPU_CACHE_V7=y -CONFIG_CPU_CACHE_VIPT=y -CONFIG_CPU_COPY_V6=y -CONFIG_CPU_TLB_V7=y -CONFIG_CPU_HAS_ASID=y -CONFIG_CPU_CP15=y -CONFIG_CPU_CP15_MMU=y - -# -# Processor Features -# -# CONFIG_ARM_LPAE is not set -CONFIG_ARM_THUMB=y -# CONFIG_ARM_THUMBEE is not set -CONFIG_ARM_VIRT_EXT=y -CONFIG_SWP_EMULATE=y -# CONFIG_CPU_BIG_ENDIAN is not set -# CONFIG_CPU_ICACHE_DISABLE is not set -# CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND is not set -# CONFIG_CPU_BPREDICT_DISABLE is not set -CONFIG_CPU_SPECTRE=y -CONFIG_HARDEN_BRANCH_PREDICTOR=y -CONFIG_KUSER_HELPERS=y -CONFIG_VDSO=y -CONFIG_OUTER_CACHE=y -CONFIG_OUTER_CACHE_SYNC=y -CONFIG_MIGHT_HAVE_CACHE_L2X0=y -CONFIG_CACHE_L2X0=y -# CONFIG_CACHE_L2X0_PMU is not set -# CONFIG_PL310_ERRATA_588369 is not set -# CONFIG_PL310_ERRATA_727915 is not set -# CONFIG_PL310_ERRATA_753970 is not set -# CONFIG_PL310_ERRATA_769419 is not set -CONFIG_ARM_L1_CACHE_SHIFT_6=y -CONFIG_ARM_L1_CACHE_SHIFT=6 -CONFIG_ARM_DMA_MEM_BUFFERABLE=y -CONFIG_ARM_HEAVY_MB=y -CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y -CONFIG_DEBUG_ALIGN_RODATA=y -# CONFIG_ARM_ERRATA_430973 is not set -CONFIG_ARM_ERRATA_643719=y -# CONFIG_ARM_ERRATA_720789 is not set -# CONFIG_ARM_ERRATA_754322 is not set -# CONFIG_ARM_ERRATA_754327 is not set -# CONFIG_ARM_ERRATA_764369 is not set -# CONFIG_ARM_ERRATA_775420 is not set -# CONFIG_ARM_ERRATA_798181 is not set -# CONFIG_ARM_ERRATA_773022 is not set -# CONFIG_ARM_ERRATA_818325_852422 is not set -# CONFIG_ARM_ERRATA_821420 is not set -# CONFIG_ARM_ERRATA_825619 is not set -# CONFIG_ARM_ERRATA_857271 is not set -# CONFIG_ARM_ERRATA_852421 is not set -# CONFIG_ARM_ERRATA_852423 is not set -# CONFIG_ARM_ERRATA_857272 is not set -# end of System Type - -# -# Bus support -# -# CONFIG_ARM_ERRATA_814220 is not set -# end of Bus support - -# -# Kernel Features -# -CONFIG_HAVE_SMP=y -CONFIG_SMP=y -CONFIG_SMP_ON_UP=y -CONFIG_ARM_CPU_TOPOLOGY=y -# CONFIG_SCHED_MC is not set -# CONFIG_SCHED_SMT is not set -CONFIG_HAVE_ARM_ARCH_TIMER=y -# CONFIG_MCPM is not set -# CONFIG_BIG_LITTLE is not set -CONFIG_VMSPLIT_3G=y -# CONFIG_VMSPLIT_3G_OPT is not set -# CONFIG_VMSPLIT_2G is not set -# CONFIG_VMSPLIT_1G is not set -CONFIG_PAGE_OFFSET=0xC0000000 -CONFIG_NR_CPUS=8 -CONFIG_HOTPLUG_CPU=y -CONFIG_ARM_PSCI=y -CONFIG_ARCH_NR_GPIO=416 -CONFIG_HZ_FIXED=0 -CONFIG_HZ_100=y -# CONFIG_HZ_200 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -# CONFIG_HZ_500 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=100 -CONFIG_SCHED_HRTICK=y -# CONFIG_THUMB2_KERNEL is not set -CONFIG_ARM_PATCH_IDIV=y -CONFIG_AEABI=y -# CONFIG_OABI_COMPAT is not set -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_HAVE_ARCH_PFN_VALID=y -CONFIG_HIGHMEM=y -CONFIG_HIGHPTE=y -CONFIG_CPU_SW_DOMAIN_PAN=y -CONFIG_HW_PERF_EVENTS=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARM_MODULE_PLTS=y -CONFIG_FORCE_MAX_ZONEORDER=11 -CONFIG_ALIGNMENT_TRAP=y -# CONFIG_UACCESS_WITH_MEMCPY is not set -# CONFIG_SECCOMP is not set -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -# CONFIG_XEN is not set -# end of Kernel Features - -# -# Boot options -# -CONFIG_USE_OF=y -CONFIG_ATAGS=y -# CONFIG_DEPRECATED_PARAM_STRUCT is not set -CONFIG_ZBOOT_ROM_TEXT=0 -CONFIG_ZBOOT_ROM_BSS=0 -CONFIG_ARM_APPENDED_DTB=y -CONFIG_ARM_ATAG_DTB_COMPAT=y -CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y -# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND is not set -CONFIG_CMDLINE="" -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_AUTO_ZRELADDR=y -# CONFIG_EFI is not set -# end of Boot options - -# -# CPU Power Management -# - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_CPUFREQ_DT=y -CONFIG_CPUFREQ_DT_PLATDEV=y -# CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of CPU Power Management - -# -# Floating point emulation -# - -# -# At least one emulation must be selected -# -CONFIG_VFP=y -CONFIG_VFPv3=y -CONFIG_NEON=y -# CONFIG_KERNEL_MODE_NEON is not set -# end of Floating point emulation - -# -# Power management options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_HIBERNATION is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -# CONFIG_APM_EMULATION is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_CPU_PM=y -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARM_CPU_SUSPEND=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_TRUSTED_FOUNDATIONS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_ARM_PSCI_FW=y -CONFIG_HAVE_ARM_SMCCC=y -CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y -CONFIG_ARM_SMCCC_SOC_ID=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_ARM_CRYPTO is not set -CONFIG_AS_VFP_VMRS_FPINST=y - -# -# General architecture-dependent options -# -CONFIG_HAVE_OPROFILE=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_32BIT_OFF_T=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_REL=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=8 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_OLD_SIGACTION=y -CONFIG_COMPAT_32BIT_TIME=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_PHYS_TO_DMA=y -# CONFIG_LOCK_EVENT_COUNTS is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -CONFIG_MODULE_UNLOAD=y -# CONFIG_MODULE_FORCE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -# CONFIG_BINFMT_ELF_FDPIC is not set -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_BOUNCE=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUGFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -CONFIG_CAN=y -CONFIG_CAN_RAW=y -CONFIG_CAN_BCM=y -CONFIG_CAN_GW=y -# CONFIG_CAN_J1939 is not set - -# -# CAN Device Drivers -# -# CONFIG_CAN_VCAN is not set -# CONFIG_CAN_VXCAN is not set -# CONFIG_CAN_SLCAN is not set -CONFIG_CAN_DEV=y -CONFIG_CAN_CALC_BITTIMING=y -# CONFIG_CAN_FLEXCAN is not set -# CONFIG_CAN_GRCAN is not set -CONFIG_CAN_SUN4I=y -# CONFIG_CAN_TI_HECC is not set -# CONFIG_CAN_C_CAN is not set -# CONFIG_CAN_CC770 is not set -# CONFIG_CAN_IFI_CANFD is not set -# CONFIG_CAN_M_CAN is not set -# CONFIG_CAN_RCAR is not set -# CONFIG_CAN_RCAR_CANFD is not set -# CONFIG_CAN_SJA1000 is not set -# CONFIG_CAN_SOFTING is not set - -# -# CAN SPI interfaces -# -# CONFIG_CAN_HI311X is not set -# CONFIG_CAN_MCP251X is not set -# end of CAN SPI interfaces - -# -# CAN USB interfaces -# -# CONFIG_CAN_8DEV_USB is not set -# CONFIG_CAN_EMS_USB is not set -# CONFIG_CAN_ESD_USB2 is not set -# CONFIG_CAN_GS_USB is not set -# CONFIG_CAN_KVASER_USB is not set -# CONFIG_CAN_MCBA_USB is not set -# CONFIG_CAN_PEAK_USB is not set -# CONFIG_CAN_UCAN is not set -# end of CAN USB interfaces - -# CONFIG_CAN_DEBUG_DEVICES is not set -# end of CAN Device Drivers - -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_SOC_BUS=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_SPI=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -CONFIG_ARM_CCI=y -CONFIG_ARM_CCI400_COMMON=y -CONFIG_ARM_CCI400_PORT_CTRL=y -# CONFIG_BRCMSTB_GISB_ARB is not set -# CONFIG_MOXTET is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_SUN50I_DE2_BUS is not set -CONFIG_SUNXI_RSB=y -# CONFIG_VEXPRESS_CONFIG is not set -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_MDIO=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# NVME Support -# -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set - -# -# Intel MIC & related support -# -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_USB is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_FORCE=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_AHCI_CEVA is not set -CONFIG_AHCI_SUNXI=y -# CONFIG_AHCI_QORIQ is not set -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -# CONFIG_SATA_DWC is not set - -# -# PATA SFF controllers with BMDMA -# - -# -# PIO-only SFF controllers -# - -# -# Generic fallback / legacy drivers -# -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_ALACRITECH=y -CONFIG_NET_VENDOR_ALLWINNER=y -CONFIG_SUN4I_EMAC=y -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -CONFIG_NET_VENDOR_AQUANTIA=y -# CONFIG_NET_VENDOR_ARC is not set -CONFIG_NET_VENDOR_AURORA=y -# CONFIG_AURORA_NB8800 is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -# CONFIG_NET_VENDOR_CIRRUS is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_GEMINI_ETHERNET is not set -# CONFIG_DM9000 is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_FARADAY is not set -CONFIG_NET_VENDOR_GOOGLE=y -CONFIG_NET_VENDOR_HISILICON=y -# CONFIG_HIX5HD2_GMAC is not set -# CONFIG_HISI_FEMAC is not set -# CONFIG_HIP04_ETH is not set -# CONFIG_HNS_DSAF is not set -# CONFIG_HNS_ENET is not set -CONFIG_NET_VENDOR_HUAWEI=y -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_NET_VENDOR_MARVELL is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETRONOME=y -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PENSANDO=y -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000_SPI is not set -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -CONFIG_NET_VENDOR_SOLARFLARE=y -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -CONFIG_DWMAC_SUNXI=y -CONFIG_DWMAC_SUN8I=y -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -CONFIG_MDIO_BUS_MUX=y -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -CONFIG_MDIO_SUN4I=y -CONFIG_MDIO_XPCS=y -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -# CONFIG_LED_TRIGGER_PHY is not set - -# -# MII PHY device drivers -# -# CONFIG_SFP is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -CONFIG_FIXED_PHY=y -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_TJA11XX_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -CONFIG_INPUT_FF_MEMLESS=y -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADC is not set -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -CONFIG_KEYBOARD_SUN4I_LRADC=y -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CAP11XX is not set -# CONFIG_KEYBOARD_BCM is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ADC is not set -# CONFIG_TOUCHSCREEN_AR1021_I2C is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -CONFIG_TOUCHSCREEN_SUN4I=y -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_ATMEL_CAPTOUCH is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -CONFIG_INPUT_AXP20X_PEK=y -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_SERIO_SERPORT=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_SERIO_SUN4I_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_16550A_VARIANTS=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_NR_UARTS=8 -CONFIG_SERIAL_8250_RUNTIME_UARTS=8 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_FSL=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_EM is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_OF_PLATFORM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_ST_ASC is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_HVC_DCC is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -# CONFIG_I2C_MUX_PCA954x is not set -# CONFIG_I2C_MUX_PINCTRL is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_DEMUX_PINCTRL is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -CONFIG_I2C_MV64XXX=y -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_SUN6I_P2WI=y -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_MASTER=y -# CONFIG_SPI_MEM is not set - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_CADENCE_QUADSPI is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -CONFIG_SPI_SUN4I=y -CONFIG_SPI_SUN6I=y -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_LOOPBACK_TEST is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_PINCTRL_AXP209 is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SINGLE is not set -# CONFIG_PINCTRL_SX150X is not set -# CONFIG_PINCTRL_STMFX is not set -# CONFIG_PINCTRL_OCELOT is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_PINCTRL_SUNXI=y -CONFIG_PINCTRL_SUN4I_A10=y -CONFIG_PINCTRL_SUN5I=y -CONFIG_PINCTRL_SUN6I_A31=y -CONFIG_PINCTRL_SUN6I_A31_R=y -CONFIG_PINCTRL_SUN8I_A23=y -CONFIG_PINCTRL_SUN8I_A33=y -CONFIG_PINCTRL_SUN8I_A83T=y -CONFIG_PINCTRL_SUN8I_A83T_R=y -CONFIG_PINCTRL_SUN8I_A23_R=y -CONFIG_PINCTRL_SUN8I_H3=y -CONFIG_PINCTRL_SUN8I_H3_R=y -CONFIG_PINCTRL_SUN8I_V3S=y -CONFIG_PINCTRL_SUN9I_A80=y -CONFIG_PINCTRL_SUN9I_A80_R=y -# CONFIG_PINCTRL_SUN50I_A64 is not set -# CONFIG_PINCTRL_SUN50I_A64_R is not set -# CONFIG_PINCTRL_SUN50I_A100 is not set -# CONFIG_PINCTRL_SUN50I_A100_R is not set -# CONFIG_PINCTRL_SUN50I_H5 is not set -# CONFIG_PINCTRL_SUN50I_H6 is not set -# CONFIG_PINCTRL_SUN50I_H6_R is not set -CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIO_SYSFS=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_MPC8XXX is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_ZEVIO is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# CONFIG_HTC_EGPIO is not set -# end of MFD GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_GENERIC_ADC_BATTERY is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_LEGO_EV3 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_MANAGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -CONFIG_CHARGER_AXP20X=y -CONFIG_BATTERY_AXP20X=y -CONFIG_AXP20X_POWER=y -# CONFIG_AXP288_FUEL_GAUGE is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_ISP1704 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_DETECTOR_MAX14656 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24190 is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_UCS1002 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_DRIVETEMP is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IIO_HWMON is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2947_SPI is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_OCC_P8_I2C is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_PWM_FAN is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -CONFIG_CPU_THERMAL=y -CONFIG_CPU_FREQ_THERMAL=y -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_THERMAL_MMIO is not set -# CONFIG_SUN8I_THERMAL is not set -# CONFIG_GENERIC_ADC_THERMAL is not set -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_GPIO_WATCHDOG is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_FTWDT010_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -CONFIG_SUNXI_WATCHDOG=y -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ARM_SMC_WATCHDOG is not set -# CONFIG_MEN_A21_WDT is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -CONFIG_MFD_AC100=y -CONFIG_MFD_AXP20X=y -CONFIG_MFD_AXP20X_I2C=y -CONFIG_MFD_AXP20X_RSB=y -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_ASIC3 is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_PM8XXX is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SUN6I_PRCM=y -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_T7L66XB is not set -# CONFIG_MFD_TC6387XB is not set -# CONFIG_MFD_TC6393XB is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -CONFIG_REGULATOR_FIXED_VOLTAGE=y -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -CONFIG_REGULATOR_AXP20X=y -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_FAN53880 is not set -CONFIG_REGULATOR_GPIO=y -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX8973 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MP5416 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MP886X is not set -# CONFIG_REGULATOR_MPQ7920 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_SY8827N is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_TPS6524X is not set -# CONFIG_REGULATOR_VCTRL is not set -CONFIG_RC_CORE=y -CONFIG_RC_MAP=y -# CONFIG_LIRC is not set -# CONFIG_RC_DECODERS is not set -CONFIG_RC_DEVICES=y -# CONFIG_RC_ATI_REMOTE is not set -# CONFIG_IR_HIX5HD2 is not set -# CONFIG_IR_IMON is not set -# CONFIG_IR_IMON_RAW is not set -# CONFIG_IR_MCEUSB is not set -# CONFIG_IR_REDRAT3 is not set -# CONFIG_IR_STREAMZAP is not set -# CONFIG_IR_IGORPLUGUSB is not set -# CONFIG_IR_IGUANA is not set -# CONFIG_IR_TTUSBIR is not set -# CONFIG_RC_LOOPBACK is not set -# CONFIG_IR_GPIO_CIR is not set -CONFIG_IR_SUNXI=y -# CONFIG_IR_SERIAL is not set -# CONFIG_IR_SIR is not set -# CONFIG_RC_XBOX_DVD is not set -# CONFIG_IR_TOY is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -CONFIG_MEDIA_SUPPORT=y -CONFIG_MEDIA_SUPPORT_FILTER=y -CONFIG_MEDIA_SUBDRV_AUTOSELECT=y - -# -# Media device types -# -# CONFIG_MEDIA_CAMERA_SUPPORT is not set -# CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set -# CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set -# CONFIG_MEDIA_RADIO_SUPPORT is not set -# CONFIG_MEDIA_SDR_SUPPORT is not set -# CONFIG_MEDIA_PLATFORM_SUPPORT is not set -# CONFIG_MEDIA_TEST_SUPPORT is not set -# end of Media device types - -# -# Media drivers -# - -# -# Drivers filtered as selected at 'Filter media drivers' -# -# CONFIG_MEDIA_USB_SUPPORT is not set -# end of Media drivers - -CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV=y - -# -# Media ancillary drivers -# - -# -# Media SPI Adapters -# -# end of Media SPI Adapters -# end of Media ancillary drivers - -# -# Graphics support -# -# CONFIG_IMX_IPUV3_CORE is not set -CONFIG_DRM=y -CONFIG_DRM_MIPI_DSI=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -# CONFIG_DRM_DEBUG_MM is not set -CONFIG_DRM_KMS_HELPER=y -CONFIG_DRM_KMS_FB_HELPER=y -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_FBDEV_OVERALLOC=100 -# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set -# CONFIG_DRM_DP_CEC is not set -CONFIG_DRM_GEM_CMA_HELPER=y -CONFIG_DRM_KMS_CMA_HELPER=y - -# -# I2C encoder or helper chips -# -# CONFIG_DRM_I2C_CH7006 is not set -# CONFIG_DRM_I2C_SIL164 is not set -# CONFIG_DRM_I2C_NXP_TDA998X is not set -# CONFIG_DRM_I2C_NXP_TDA9950 is not set -# end of I2C encoder or helper chips - -# -# ARM devices -# -# CONFIG_DRM_HDLCD is not set -# CONFIG_DRM_MALI_DISPLAY is not set -# CONFIG_DRM_KOMEDA is not set -# end of ARM devices - -# CONFIG_DRM_VGEM is not set -# CONFIG_DRM_VKMS is not set -# CONFIG_DRM_EXYNOS is not set -# CONFIG_DRM_UDL is not set -# CONFIG_DRM_ARMADA is not set -# CONFIG_DRM_RCAR_DW_HDMI is not set -# CONFIG_DRM_RCAR_LVDS is not set -CONFIG_DRM_SUN4I=y -CONFIG_DRM_SUN4I_HDMI=y -# CONFIG_DRM_SUN4I_HDMI_CEC is not set -CONFIG_DRM_SUN4I_BACKEND=y -CONFIG_DRM_SUN6I_DSI=y -# CONFIG_DRM_SUN8I_DW_HDMI is not set -CONFIG_DRM_SUN8I_MIXER=y -CONFIG_DRM_SUN8I_TCON_TOP=y -# CONFIG_DRM_OMAP is not set -# CONFIG_DRM_TILCDC is not set -# CONFIG_DRM_FSL_DCU is not set -# CONFIG_DRM_STM is not set -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_ARM_VERSATILE is not set -# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LB035Q02 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set -# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set -# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set -# CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set -# CONFIG_DRM_PANEL_VISIONOX_RM69299 is not set -# end of Display Panels - -CONFIG_DRM_BRIDGE=y -CONFIG_DRM_PANEL_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_CDNS_DSI is not set -# CONFIG_DRM_CHRONTEL_CH7033 is not set -# CONFIG_DRM_DISPLAY_CONNECTOR is not set -# CONFIG_DRM_LONTIUM_LT9611 is not set -# CONFIG_DRM_LVDS_CODEC is not set -# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set -# CONFIG_DRM_NWL_MIPI_DSI is not set -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_PARADE_PS8640 is not set -# CONFIG_DRM_SIL_SII8620 is not set -# CONFIG_DRM_SII902X is not set -# CONFIG_DRM_SII9234 is not set -# CONFIG_DRM_SIMPLE_BRIDGE is not set -# CONFIG_DRM_THINE_THC63LVD1024 is not set -# CONFIG_DRM_TOSHIBA_TC358762 is not set -# CONFIG_DRM_TOSHIBA_TC358764 is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_TOSHIBA_TC358768 is not set -# CONFIG_DRM_TOSHIBA_TC358775 is not set -# CONFIG_DRM_TI_TFP410 is not set -# CONFIG_DRM_TI_SN65DSI86 is not set -# CONFIG_DRM_TI_TPD12S015 is not set -# CONFIG_DRM_ANALOGIX_ANX6345 is not set -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_I2C_ADV7511 is not set -# end of Display Interface Bridges - -# CONFIG_DRM_STI is not set -# CONFIG_DRM_ETNAVIV is not set -# CONFIG_DRM_ARCPGU is not set -# CONFIG_DRM_MXSFB is not set -# CONFIG_DRM_GM12U320 is not set -# CONFIG_TINYDRM_HX8357D is not set -# CONFIG_TINYDRM_ILI9225 is not set -# CONFIG_TINYDRM_ILI9341 is not set -# CONFIG_TINYDRM_ILI9486 is not set -# CONFIG_TINYDRM_MI0283QT is not set -# CONFIG_TINYDRM_REPAPER is not set -# CONFIG_TINYDRM_ST7586 is not set -# CONFIG_TINYDRM_ST7735R is not set -# CONFIG_DRM_PL111 is not set -# CONFIG_DRM_TVE200 is not set -# CONFIG_DRM_LIMA is not set -# CONFIG_DRM_PANFROST is not set -# CONFIG_DRM_MCDE is not set -# CONFIG_DRM_TIDSS is not set -# CONFIG_DRM_LEGACY is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -CONFIG_FB_SIMPLE=y -# CONFIG_FB_SSD1307 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_VIDEOMODE_HELPERS=y -CONFIG_HDMI=y - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -CONFIG_SOUND=y -CONFIG_SND=y -CONFIG_SND_TIMER=y -CONFIG_SND_PCM=y -CONFIG_SND_DMAENGINE_PCM=y -CONFIG_SND_JACK=y -CONFIG_SND_JACK_INPUT_DEV=y -# CONFIG_SND_OSSEMUL is not set -CONFIG_SND_PCM_TIMER=y -# CONFIG_SND_HRTIMER is not set -# CONFIG_SND_DYNAMIC_MINORS is not set -CONFIG_SND_SUPPORT_OLD_API=y -CONFIG_SND_PROC_FS=y -CONFIG_SND_VERBOSE_PROCFS=y -# CONFIG_SND_VERBOSE_PRINTK is not set -# CONFIG_SND_DEBUG is not set -# CONFIG_SND_SEQUENCER is not set -CONFIG_SND_DRIVERS=y -# CONFIG_SND_DUMMY is not set -# CONFIG_SND_ALOOP is not set -# CONFIG_SND_MTPAV is not set -# CONFIG_SND_SERIAL_U16550 is not set -# CONFIG_SND_MPU401 is not set - -# -# HD-Audio -# -# end of HD-Audio - -CONFIG_SND_HDA_PREALLOC_SIZE=64 -CONFIG_SND_ARM=y -CONFIG_SND_SPI=y -CONFIG_SND_USB=y -# CONFIG_SND_USB_AUDIO is not set -# CONFIG_SND_USB_UA101 is not set -# CONFIG_SND_USB_CAIAQ is not set -# CONFIG_SND_USB_6FIRE is not set -# CONFIG_SND_USB_HIFACE is not set -# CONFIG_SND_BCD2000 is not set -# CONFIG_SND_USB_POD is not set -# CONFIG_SND_USB_PODHD is not set -# CONFIG_SND_USB_TONEPORT is not set -# CONFIG_SND_USB_VARIAX is not set -CONFIG_SND_SOC=y -CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y -# CONFIG_SND_SOC_AMD_ACP is not set -# CONFIG_SND_ATMEL_SOC is not set -# CONFIG_SND_BCM63XX_I2S_WHISTLER is not set -# CONFIG_SND_DESIGNWARE_I2S is not set - -# -# SoC Audio for Freescale CPUs -# - -# -# Common SoC Audio options for Freescale CPUs: -# -# CONFIG_SND_SOC_FSL_ASRC is not set -# CONFIG_SND_SOC_FSL_SAI is not set -# CONFIG_SND_SOC_FSL_AUDMIX is not set -# CONFIG_SND_SOC_FSL_SSI is not set -# CONFIG_SND_SOC_FSL_SPDIF is not set -# CONFIG_SND_SOC_FSL_ESAI is not set -# CONFIG_SND_SOC_FSL_MICFIL is not set -# CONFIG_SND_SOC_IMX_AUDMUX is not set -# end of SoC Audio for Freescale CPUs - -# CONFIG_SND_I2S_HI6210_I2S is not set -# CONFIG_SND_SOC_IMG is not set -# CONFIG_SND_SOC_MTK_BTCVSD is not set -# CONFIG_SND_SOC_SOF_TOPLEVEL is not set - -# -# STMicroelectronics STM32 SOC audio support -# -# end of STMicroelectronics STM32 SOC audio support - -# -# Allwinner SoC Audio support -# -CONFIG_SND_SUN4I_CODEC=y -# CONFIG_SND_SUN8I_CODEC is not set -# CONFIG_SND_SUN8I_CODEC_ANALOG is not set -# CONFIG_SND_SUN4I_I2S is not set -# CONFIG_SND_SUN4I_SPDIF is not set -# end of Allwinner SoC Audio support - -# CONFIG_SND_SOC_XILINX_I2S is not set -# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set -# CONFIG_SND_SOC_XILINX_SPDIF is not set -# CONFIG_SND_SOC_XTFPGA_I2S is not set -# CONFIG_ZX_TDM is not set -CONFIG_SND_SOC_I2C_AND_SPI=y - -# -# CODEC drivers -# -# CONFIG_SND_SOC_AC97_CODEC is not set -# CONFIG_SND_SOC_ADAU1701 is not set -# CONFIG_SND_SOC_ADAU1761_I2C is not set -# CONFIG_SND_SOC_ADAU1761_SPI is not set -# CONFIG_SND_SOC_ADAU7002 is not set -# CONFIG_SND_SOC_ADAU7118_HW is not set -# CONFIG_SND_SOC_ADAU7118_I2C is not set -# CONFIG_SND_SOC_AK4104 is not set -# CONFIG_SND_SOC_AK4118 is not set -# CONFIG_SND_SOC_AK4458 is not set -# CONFIG_SND_SOC_AK4554 is not set -# CONFIG_SND_SOC_AK4613 is not set -# CONFIG_SND_SOC_AK4642 is not set -# CONFIG_SND_SOC_AK5386 is not set -# CONFIG_SND_SOC_AK5558 is not set -# CONFIG_SND_SOC_ALC5623 is not set -# CONFIG_SND_SOC_BD28623 is not set -# CONFIG_SND_SOC_BT_SCO is not set -# CONFIG_SND_SOC_CS35L32 is not set -# CONFIG_SND_SOC_CS35L33 is not set -# CONFIG_SND_SOC_CS35L34 is not set -# CONFIG_SND_SOC_CS35L35 is not set -# CONFIG_SND_SOC_CS35L36 is not set -# CONFIG_SND_SOC_CS42L42 is not set -# CONFIG_SND_SOC_CS42L51_I2C is not set -# CONFIG_SND_SOC_CS42L52 is not set -# CONFIG_SND_SOC_CS42L56 is not set -# CONFIG_SND_SOC_CS42L73 is not set -# CONFIG_SND_SOC_CS4265 is not set -# CONFIG_SND_SOC_CS4270 is not set -# CONFIG_SND_SOC_CS4271_I2C is not set -# CONFIG_SND_SOC_CS4271_SPI is not set -# CONFIG_SND_SOC_CS42XX8_I2C is not set -# CONFIG_SND_SOC_CS43130 is not set -# CONFIG_SND_SOC_CS4341 is not set -# CONFIG_SND_SOC_CS4349 is not set -# CONFIG_SND_SOC_CS53L30 is not set -# CONFIG_SND_SOC_CX2072X is not set -# CONFIG_SND_SOC_DA7213 is not set -# CONFIG_SND_SOC_DMIC is not set -# CONFIG_SND_SOC_ES7134 is not set -# CONFIG_SND_SOC_ES7241 is not set -# CONFIG_SND_SOC_ES8316 is not set -# CONFIG_SND_SOC_ES8328_I2C is not set -# CONFIG_SND_SOC_ES8328_SPI is not set -# CONFIG_SND_SOC_GTM601 is not set -# CONFIG_SND_SOC_INNO_RK3036 is not set -# CONFIG_SND_SOC_MAX98088 is not set -# CONFIG_SND_SOC_MAX98357A is not set -# CONFIG_SND_SOC_MAX98504 is not set -# CONFIG_SND_SOC_MAX9867 is not set -# CONFIG_SND_SOC_MAX98927 is not set -# CONFIG_SND_SOC_MAX98373_I2C is not set -# CONFIG_SND_SOC_MAX98390 is not set -# CONFIG_SND_SOC_MAX9860 is not set -# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set -# CONFIG_SND_SOC_PCM1681 is not set -# CONFIG_SND_SOC_PCM1789_I2C is not set -# CONFIG_SND_SOC_PCM179X_I2C is not set -# CONFIG_SND_SOC_PCM179X_SPI is not set -# CONFIG_SND_SOC_PCM186X_I2C is not set -# CONFIG_SND_SOC_PCM186X_SPI is not set -# CONFIG_SND_SOC_PCM3060_I2C is not set -# CONFIG_SND_SOC_PCM3060_SPI is not set -# CONFIG_SND_SOC_PCM3168A_I2C is not set -# CONFIG_SND_SOC_PCM3168A_SPI is not set -# CONFIG_SND_SOC_PCM512x_I2C is not set -# CONFIG_SND_SOC_PCM512x_SPI is not set -# CONFIG_SND_SOC_RK3328 is not set -# CONFIG_SND_SOC_RT5616 is not set -# CONFIG_SND_SOC_RT5631 is not set -# CONFIG_SND_SOC_SGTL5000 is not set -# CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set -# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set -# CONFIG_SND_SOC_SPDIF is not set -# CONFIG_SND_SOC_SSM2305 is not set -# CONFIG_SND_SOC_SSM2602_SPI is not set -# CONFIG_SND_SOC_SSM2602_I2C is not set -# CONFIG_SND_SOC_SSM4567 is not set -# CONFIG_SND_SOC_STA32X is not set -# CONFIG_SND_SOC_STA350 is not set -# CONFIG_SND_SOC_STI_SAS is not set -# CONFIG_SND_SOC_TAS2552 is not set -# CONFIG_SND_SOC_TAS2562 is not set -# CONFIG_SND_SOC_TAS2770 is not set -# CONFIG_SND_SOC_TAS5086 is not set -# CONFIG_SND_SOC_TAS571X is not set -# CONFIG_SND_SOC_TAS5720 is not set -# CONFIG_SND_SOC_TAS6424 is not set -# CONFIG_SND_SOC_TDA7419 is not set -# CONFIG_SND_SOC_TFA9879 is not set -# CONFIG_SND_SOC_TLV320AIC23_I2C is not set -# CONFIG_SND_SOC_TLV320AIC23_SPI is not set -# CONFIG_SND_SOC_TLV320AIC31XX is not set -# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set -# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set -# CONFIG_SND_SOC_TLV320AIC3X is not set -# CONFIG_SND_SOC_TLV320ADCX140 is not set -# CONFIG_SND_SOC_TS3A227E is not set -# CONFIG_SND_SOC_TSCS42XX is not set -# CONFIG_SND_SOC_TSCS454 is not set -# CONFIG_SND_SOC_UDA1334 is not set -# CONFIG_SND_SOC_WM8510 is not set -# CONFIG_SND_SOC_WM8523 is not set -# CONFIG_SND_SOC_WM8524 is not set -# CONFIG_SND_SOC_WM8580 is not set -# CONFIG_SND_SOC_WM8711 is not set -# CONFIG_SND_SOC_WM8728 is not set -# CONFIG_SND_SOC_WM8731 is not set -# CONFIG_SND_SOC_WM8737 is not set -# CONFIG_SND_SOC_WM8741 is not set -# CONFIG_SND_SOC_WM8750 is not set -# CONFIG_SND_SOC_WM8753 is not set -# CONFIG_SND_SOC_WM8770 is not set -# CONFIG_SND_SOC_WM8776 is not set -# CONFIG_SND_SOC_WM8782 is not set -# CONFIG_SND_SOC_WM8804_I2C is not set -# CONFIG_SND_SOC_WM8804_SPI is not set -# CONFIG_SND_SOC_WM8903 is not set -# CONFIG_SND_SOC_WM8904 is not set -# CONFIG_SND_SOC_WM8960 is not set -# CONFIG_SND_SOC_WM8962 is not set -# CONFIG_SND_SOC_WM8974 is not set -# CONFIG_SND_SOC_WM8978 is not set -# CONFIG_SND_SOC_WM8985 is not set -# CONFIG_SND_SOC_ZL38060 is not set -# CONFIG_SND_SOC_ZX_AUD96P22 is not set -# CONFIG_SND_SOC_MAX9759 is not set -# CONFIG_SND_SOC_MT6351 is not set -# CONFIG_SND_SOC_MT6358 is not set -# CONFIG_SND_SOC_MT6660 is not set -# CONFIG_SND_SOC_NAU8540 is not set -# CONFIG_SND_SOC_NAU8810 is not set -# CONFIG_SND_SOC_NAU8822 is not set -# CONFIG_SND_SOC_NAU8824 is not set -# CONFIG_SND_SOC_TPA6130A2 is not set -# end of CODEC drivers - -# CONFIG_SND_SIMPLE_CARD is not set -# CONFIG_SND_AUDIO_GRAPH_CARD is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -CONFIG_HID_A4TECH=y -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -CONFIG_HID_APPLE=y -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -CONFIG_HID_BELKIN=y -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -CONFIG_HID_CHERRY=y -CONFIG_HID_CHICONY=y -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_PRODIKEYS is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -CONFIG_HID_CYPRESS=y -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -CONFIG_HID_EZKEY=y -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -CONFIG_HID_ITE=y -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -CONFIG_HID_KENSINGTON=y -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -CONFIG_HID_LOGITECH=y -# CONFIG_HID_LOGITECH_HIDPP is not set -# CONFIG_LOGITECH_FF is not set -# CONFIG_LOGIRUMBLEPAD2_FF is not set -# CONFIG_LOGIG940_FF is not set -# CONFIG_LOGIWHEELS_FF is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -CONFIG_HID_REDRAGON=y -CONFIG_HID_MICROSOFT=y -CONFIG_HID_MONTEREY=y -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -# CONFIG_USB_XHCI_HCD is not set -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -# CONFIG_USB_STORAGE is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -CONFIG_USB_MUSB_HDRC=y -# CONFIG_USB_MUSB_HOST is not set -# CONFIG_USB_MUSB_GADGET is not set -CONFIG_USB_MUSB_DUAL_ROLE=y - -# -# Platform Glue Layer -# -CONFIG_USB_MUSB_SUNXI=y - -# -# MUSB DMA mode -# -# CONFIG_MUSB_PIO_ONLY is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -CONFIG_USB_PHY=y -CONFIG_NOP_USB_XCEIV=y -# CONFIG_AM335X_PHY_USB is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# CONFIG_USB_ULPI is not set -# end of USB Physical Layer drivers - -CONFIG_USB_GADGET=y -# CONFIG_USB_GADGET_DEBUG_FILES is not set -# CONFIG_USB_GADGET_DEBUG_FS is not set -CONFIG_USB_GADGET_VBUS_DRAW=2 -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 - -# -# USB Peripheral Controller -# -# CONFIG_USB_FUSB300 is not set -# CONFIG_USB_FOTG210_UDC is not set -# CONFIG_USB_GR_UDC is not set -# CONFIG_USB_R8A66597 is not set -# CONFIG_USB_PXA27X is not set -# CONFIG_USB_MV_UDC is not set -# CONFIG_USB_MV_U3D is not set -# CONFIG_USB_SNP_UDC_PLAT is not set -# CONFIG_USB_M66592 is not set -# CONFIG_USB_BDC_UDC is not set -# CONFIG_USB_NET2272 is not set -# CONFIG_USB_GADGET_XILINX is not set -# CONFIG_USB_MAX3420_UDC is not set -# CONFIG_USB_DUMMY_HCD is not set -# end of USB Peripheral Controller - -# CONFIG_USB_CONFIGFS is not set - -# -# USB Gadget precomposed configurations -# -# CONFIG_USB_ZERO is not set -# CONFIG_USB_AUDIO is not set -# CONFIG_USB_ETH is not set -# CONFIG_USB_G_NCM is not set -# CONFIG_USB_GADGETFS is not set -# CONFIG_USB_FUNCTIONFS is not set -# CONFIG_USB_MASS_STORAGE is not set -# CONFIG_USB_G_SERIAL is not set -# CONFIG_USB_MIDI_GADGET is not set -# CONFIG_USB_G_PRINTER is not set -# CONFIG_USB_CDC_COMPOSITE is not set -# CONFIG_USB_G_ACM_MS is not set -# CONFIG_USB_G_MULTI is not set -# CONFIG_USB_G_HID is not set -# CONFIG_USB_G_DBGP is not set -# CONFIG_USB_RAW_GADGET is not set -# end of USB Gadget precomposed configurations - -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_PWRSEQ_EMMC=y -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SPI is not set -# CONFIG_MMC_DW is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -CONFIG_MMC_SUNXI=y -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_AW2013 is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_EL15203000 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP55XX_COMMON is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_SYSCON is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_DISK is not set -CONFIG_LEDS_TRIGGER_HEARTBEAT=y -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -CONFIG_LEDS_TRIGGER_DEFAULT_ON=y - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -# CONFIG_RTC_INTF_SYSFS is not set -# CONFIG_RTC_INTF_PROC is not set -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -CONFIG_RTC_DRV_AC100=y -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_HYM8563 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_ISL12026 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RX6110 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -# CONFIG_RTC_DRV_CMOS is not set -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set -# CONFIG_RTC_DRV_ZYNQMP is not set - -# -# on-CPU RTC drivers -# -CONFIG_RTC_DRV_SUN6I=y -CONFIG_RTC_DRV_SUNXI=y -# CONFIG_RTC_DRV_CADENCE is not set -# CONFIG_RTC_DRV_FTRTC010 is not set -# CONFIG_RTC_DRV_R7301 is not set - -# -# HID Sensor RTC drivers -# -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DMA_SUN4I=y -CONFIG_DMA_SUN6I=y -# CONFIG_DW_AXI_DMAC is not set -# CONFIG_FSL_EDMA is not set -# CONFIG_FSL_QDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_NBPFAXI_DMA is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_SF_PDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_SELFTESTS is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO_MENU=y -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_CLK_HSDK is not set -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_CLK_QORIQ is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_SUNXI=y -CONFIG_CLK_SUNXI_CLOCKS=y -CONFIG_CLK_SUNXI_PRCM_SUN6I=y -CONFIG_CLK_SUNXI_PRCM_SUN8I=y -CONFIG_CLK_SUNXI_PRCM_SUN9I=y -CONFIG_SUNXI_CCU=y -CONFIG_SUN4I_A10_CCU=y -CONFIG_SUN5I_CCU=y -CONFIG_SUN6I_A31_CCU=y -CONFIG_SUN8I_A23_CCU=y -CONFIG_SUN8I_A33_CCU=y -CONFIG_SUN8I_A83T_CCU=y -CONFIG_SUN8I_H3_CCU=y -CONFIG_SUN8I_V3S_CCU=y -CONFIG_SUN8I_DE2_CCU=y -CONFIG_SUN8I_R40_CCU=y -CONFIG_SUN9I_A80_CCU=y -CONFIG_SUN8I_R_CCU=y -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_CLKSRC_MMIO=y -CONFIG_SUN4I_TIMER=y -CONFIG_SUN5I_HSTIMER=y -CONFIG_ARM_ARCH_TIMER=y -CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# CONFIG_QUICC_ENGINE is not set -# CONFIG_FSL_RCPM is not set -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SUNXI_SRAM=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -CONFIG_EXTCON=y - -# -# Extcon Device Drivers -# -# CONFIG_EXTCON_ADC_JACK is not set -# CONFIG_EXTCON_FSA9480 is not set -# CONFIG_EXTCON_GPIO is not set -# CONFIG_EXTCON_MAX3355 is not set -# CONFIG_EXTCON_PTN5150 is not set -# CONFIG_EXTCON_RT8973A is not set -# CONFIG_EXTCON_SM5502 is not set -# CONFIG_EXTCON_USB_GPIO is not set -# CONFIG_MEMORY is not set -CONFIG_IIO=y -# CONFIG_IIO_BUFFER is not set -# CONFIG_IIO_CONFIGFS is not set -# CONFIG_IIO_TRIGGER is not set -# CONFIG_IIO_SW_DEVICE is not set -# CONFIG_IIO_SW_TRIGGER is not set - -# -# Accelerometers -# -# CONFIG_ADIS16201 is not set -# CONFIG_ADIS16209 is not set -# CONFIG_ADXL345_I2C is not set -# CONFIG_ADXL345_SPI is not set -# CONFIG_ADXL372_SPI is not set -# CONFIG_ADXL372_I2C is not set -# CONFIG_BMA180 is not set -# CONFIG_BMA220 is not set -# CONFIG_BMA400 is not set -# CONFIG_BMC150_ACCEL is not set -# CONFIG_DA280 is not set -# CONFIG_DA311 is not set -# CONFIG_DMARD06 is not set -# CONFIG_DMARD09 is not set -# CONFIG_DMARD10 is not set -# CONFIG_IIO_ST_ACCEL_3AXIS is not set -# CONFIG_KXSD9 is not set -# CONFIG_KXCJK1013 is not set -# CONFIG_MC3230 is not set -# CONFIG_MMA7455_I2C is not set -# CONFIG_MMA7455_SPI is not set -# CONFIG_MMA7660 is not set -# CONFIG_MMA8452 is not set -# CONFIG_MMA9551 is not set -# CONFIG_MMA9553 is not set -# CONFIG_MXC4005 is not set -# CONFIG_MXC6255 is not set -# CONFIG_SCA3000 is not set -# CONFIG_STK8312 is not set -# CONFIG_STK8BA50 is not set -# end of Accelerometers - -# -# Analog to digital converters -# -# CONFIG_AD7091R5 is not set -# CONFIG_AD7124 is not set -# CONFIG_AD7192 is not set -# CONFIG_AD7266 is not set -# CONFIG_AD7291 is not set -# CONFIG_AD7292 is not set -# CONFIG_AD7298 is not set -# CONFIG_AD7476 is not set -# CONFIG_AD7606_IFACE_PARALLEL is not set -# CONFIG_AD7606_IFACE_SPI is not set -# CONFIG_AD7766 is not set -# CONFIG_AD7768_1 is not set -# CONFIG_AD7780 is not set -# CONFIG_AD7791 is not set -# CONFIG_AD7793 is not set -# CONFIG_AD7887 is not set -# CONFIG_AD7923 is not set -# CONFIG_AD7949 is not set -# CONFIG_AD799X is not set -# CONFIG_AD9467 is not set -# CONFIG_ADI_AXI_ADC is not set -CONFIG_AXP20X_ADC=y -# CONFIG_AXP288_ADC is not set -# CONFIG_CC10001_ADC is not set -# CONFIG_ENVELOPE_DETECTOR is not set -# CONFIG_HI8435 is not set -# CONFIG_HX711 is not set -# CONFIG_INA2XX_ADC is not set -# CONFIG_LTC2471 is not set -# CONFIG_LTC2485 is not set -# CONFIG_LTC2496 is not set -# CONFIG_LTC2497 is not set -# CONFIG_MAX1027 is not set -# CONFIG_MAX11100 is not set -# CONFIG_MAX1118 is not set -# CONFIG_MAX1241 is not set -# CONFIG_MAX1363 is not set -# CONFIG_MAX9611 is not set -# CONFIG_MCP320X is not set -# CONFIG_MCP3422 is not set -# CONFIG_MCP3911 is not set -# CONFIG_NAU7802 is not set -# CONFIG_SD_ADC_MODULATOR is not set -# CONFIG_SUN4I_GPADC is not set -# CONFIG_TI_ADC081C is not set -# CONFIG_TI_ADC0832 is not set -# CONFIG_TI_ADC084S021 is not set -# CONFIG_TI_ADC12138 is not set -# CONFIG_TI_ADC108S102 is not set -# CONFIG_TI_ADC128S052 is not set -# CONFIG_TI_ADC161S626 is not set -# CONFIG_TI_ADS1015 is not set -# CONFIG_TI_ADS7950 is not set -# CONFIG_TI_ADS8344 is not set -# CONFIG_TI_ADS8688 is not set -# CONFIG_TI_ADS124S08 is not set -# CONFIG_TI_TLC4541 is not set -# CONFIG_VF610_ADC is not set -# CONFIG_XILINX_XADC is not set -# end of Analog to digital converters - -# -# Analog Front Ends -# -# CONFIG_IIO_RESCALE is not set -# end of Analog Front Ends - -# -# Amplifiers -# -# CONFIG_AD8366 is not set -# CONFIG_HMC425 is not set -# end of Amplifiers - -# -# Chemical Sensors -# -# CONFIG_ATLAS_PH_SENSOR is not set -# CONFIG_ATLAS_EZO_SENSOR is not set -# CONFIG_BME680 is not set -# CONFIG_CCS811 is not set -# CONFIG_IAQCORE is not set -# CONFIG_SCD30_CORE is not set -# CONFIG_SENSIRION_SGP30 is not set -# CONFIG_SPS30 is not set -# CONFIG_VZ89X is not set -# end of Chemical Sensors - -# -# Hid Sensor IIO Common -# -# end of Hid Sensor IIO Common - -# -# SSP Sensor Common -# -# CONFIG_IIO_SSP_SENSORHUB is not set -# end of SSP Sensor Common - -# -# Digital to analog converters -# -# CONFIG_AD5064 is not set -# CONFIG_AD5360 is not set -# CONFIG_AD5380 is not set -# CONFIG_AD5421 is not set -# CONFIG_AD5446 is not set -# CONFIG_AD5449 is not set -# CONFIG_AD5592R is not set -# CONFIG_AD5593R is not set -# CONFIG_AD5504 is not set -# CONFIG_AD5624R_SPI is not set -# CONFIG_AD5686_SPI is not set -# CONFIG_AD5696_I2C is not set -# CONFIG_AD5755 is not set -# CONFIG_AD5758 is not set -# CONFIG_AD5761 is not set -# CONFIG_AD5764 is not set -# CONFIG_AD5770R is not set -# CONFIG_AD5791 is not set -# CONFIG_AD7303 is not set -# CONFIG_AD8801 is not set -# CONFIG_DPOT_DAC is not set -# CONFIG_DS4424 is not set -# CONFIG_LTC1660 is not set -# CONFIG_LTC2632 is not set -# CONFIG_M62332 is not set -# CONFIG_MAX517 is not set -# CONFIG_MAX5821 is not set -# CONFIG_MCP4725 is not set -# CONFIG_MCP4922 is not set -# CONFIG_TI_DAC082S085 is not set -# CONFIG_TI_DAC5571 is not set -# CONFIG_TI_DAC7311 is not set -# CONFIG_TI_DAC7612 is not set -# CONFIG_VF610_DAC is not set -# end of Digital to analog converters - -# -# IIO dummy driver -# -# end of IIO dummy driver - -# -# Frequency Synthesizers DDS/PLL -# - -# -# Clock Generator/Distribution -# -# CONFIG_AD9523 is not set -# end of Clock Generator/Distribution - -# -# Phase-Locked Loop (PLL) frequency synthesizers -# -# CONFIG_ADF4350 is not set -# CONFIG_ADF4371 is not set -# end of Phase-Locked Loop (PLL) frequency synthesizers -# end of Frequency Synthesizers DDS/PLL - -# -# Digital gyroscope sensors -# -# CONFIG_ADIS16080 is not set -# CONFIG_ADIS16130 is not set -# CONFIG_ADIS16136 is not set -# CONFIG_ADIS16260 is not set -# CONFIG_ADXRS450 is not set -# CONFIG_BMG160 is not set -# CONFIG_FXAS21002C is not set -# CONFIG_MPU3050_I2C is not set -# CONFIG_IIO_ST_GYRO_3AXIS is not set -# CONFIG_ITG3200 is not set -# end of Digital gyroscope sensors - -# -# Health Sensors -# - -# -# Heart Rate Monitors -# -# CONFIG_AFE4403 is not set -# CONFIG_AFE4404 is not set -# CONFIG_MAX30100 is not set -# CONFIG_MAX30102 is not set -# end of Heart Rate Monitors -# end of Health Sensors - -# -# Humidity sensors -# -# CONFIG_AM2315 is not set -# CONFIG_DHT11 is not set -# CONFIG_HDC100X is not set -# CONFIG_HTS221 is not set -# CONFIG_HTU21 is not set -# CONFIG_SI7005 is not set -# CONFIG_SI7020 is not set -# end of Humidity sensors - -# -# Inertial measurement units -# -# CONFIG_ADIS16400 is not set -# CONFIG_ADIS16460 is not set -# CONFIG_ADIS16475 is not set -# CONFIG_ADIS16480 is not set -# CONFIG_BMI160_I2C is not set -# CONFIG_BMI160_SPI is not set -# CONFIG_FXOS8700_I2C is not set -# CONFIG_FXOS8700_SPI is not set -# CONFIG_KMX61 is not set -# CONFIG_INV_ICM42600_I2C is not set -# CONFIG_INV_ICM42600_SPI is not set -# CONFIG_INV_MPU6050_I2C is not set -# CONFIG_INV_MPU6050_SPI is not set -# CONFIG_IIO_ST_LSM6DSX is not set -# end of Inertial measurement units - -# -# Light sensors -# -# CONFIG_ADJD_S311 is not set -# CONFIG_ADUX1020 is not set -# CONFIG_AL3010 is not set -# CONFIG_AL3320A is not set -# CONFIG_APDS9300 is not set -# CONFIG_APDS9960 is not set -# CONFIG_BH1750 is not set -# CONFIG_BH1780 is not set -# CONFIG_CM32181 is not set -# CONFIG_CM3232 is not set -# CONFIG_CM3323 is not set -# CONFIG_CM3605 is not set -# CONFIG_CM36651 is not set -# CONFIG_GP2AP002 is not set -# CONFIG_GP2AP020A00F is not set -# CONFIG_SENSORS_ISL29018 is not set -# CONFIG_SENSORS_ISL29028 is not set -# CONFIG_ISL29125 is not set -# CONFIG_JSA1212 is not set -# CONFIG_RPR0521 is not set -# CONFIG_LTR501 is not set -# CONFIG_LV0104CS is not set -# CONFIG_MAX44000 is not set -# CONFIG_MAX44009 is not set -# CONFIG_NOA1305 is not set -# CONFIG_OPT3001 is not set -# CONFIG_PA12203001 is not set -# CONFIG_SI1133 is not set -# CONFIG_SI1145 is not set -# CONFIG_STK3310 is not set -# CONFIG_ST_UVIS25 is not set -# CONFIG_TCS3414 is not set -# CONFIG_TCS3472 is not set -# CONFIG_SENSORS_TSL2563 is not set -# CONFIG_TSL2583 is not set -# CONFIG_TSL2772 is not set -# CONFIG_TSL4531 is not set -# CONFIG_US5182D is not set -# CONFIG_VCNL4000 is not set -# CONFIG_VCNL4035 is not set -# CONFIG_VEML6030 is not set -# CONFIG_VEML6070 is not set -# CONFIG_VL6180 is not set -# CONFIG_ZOPT2201 is not set -# end of Light sensors - -# -# Magnetometer sensors -# -# CONFIG_AK8974 is not set -# CONFIG_AK8975 is not set -# CONFIG_AK09911 is not set -# CONFIG_BMC150_MAGN_I2C is not set -# CONFIG_BMC150_MAGN_SPI is not set -# CONFIG_MAG3110 is not set -# CONFIG_MMC35240 is not set -# CONFIG_IIO_ST_MAGN_3AXIS is not set -# CONFIG_SENSORS_HMC5843_I2C is not set -# CONFIG_SENSORS_HMC5843_SPI is not set -# CONFIG_SENSORS_RM3100_I2C is not set -# CONFIG_SENSORS_RM3100_SPI is not set -# end of Magnetometer sensors - -# -# Multiplexers -# -# CONFIG_IIO_MUX is not set -# end of Multiplexers - -# -# Inclinometer sensors -# -# end of Inclinometer sensors - -# -# Linear and angular position sensors -# -# end of Linear and angular position sensors - -# -# Digital potentiometers -# -# CONFIG_AD5272 is not set -# CONFIG_DS1803 is not set -# CONFIG_MAX5432 is not set -# CONFIG_MAX5481 is not set -# CONFIG_MAX5487 is not set -# CONFIG_MCP4018 is not set -# CONFIG_MCP4131 is not set -# CONFIG_MCP4531 is not set -# CONFIG_MCP41010 is not set -# CONFIG_TPL0102 is not set -# end of Digital potentiometers - -# -# Digital potentiostats -# -# CONFIG_LMP91000 is not set -# end of Digital potentiostats - -# -# Pressure sensors -# -# CONFIG_ABP060MG is not set -# CONFIG_BMP280 is not set -# CONFIG_DLHL60D is not set -# CONFIG_DPS310 is not set -# CONFIG_HP03 is not set -# CONFIG_ICP10100 is not set -# CONFIG_MPL115_I2C is not set -# CONFIG_MPL115_SPI is not set -# CONFIG_MPL3115 is not set -# CONFIG_MS5611 is not set -# CONFIG_MS5637 is not set -# CONFIG_IIO_ST_PRESS is not set -# CONFIG_T5403 is not set -# CONFIG_HP206C is not set -# CONFIG_ZPA2326 is not set -# end of Pressure sensors - -# -# Lightning sensors -# -# CONFIG_AS3935 is not set -# end of Lightning sensors - -# -# Proximity and distance sensors -# -# CONFIG_ISL29501 is not set -# CONFIG_LIDAR_LITE_V2 is not set -# CONFIG_MB1232 is not set -# CONFIG_PING is not set -# CONFIG_RFD77402 is not set -# CONFIG_SRF04 is not set -# CONFIG_SX9310 is not set -# CONFIG_SX9500 is not set -# CONFIG_SRF08 is not set -# CONFIG_VCNL3020 is not set -# CONFIG_VL53L0X_I2C is not set -# end of Proximity and distance sensors - -# -# Resolver to digital converters -# -# CONFIG_AD2S90 is not set -# CONFIG_AD2S1200 is not set -# end of Resolver to digital converters - -# -# Temperature sensors -# -# CONFIG_LTC2983 is not set -# CONFIG_MAXIM_THERMOCOUPLE is not set -# CONFIG_MLX90614 is not set -# CONFIG_MLX90632 is not set -# CONFIG_TMP006 is not set -# CONFIG_TMP007 is not set -# CONFIG_TSYS01 is not set -# CONFIG_TSYS02D is not set -# CONFIG_MAX31856 is not set -# end of Temperature sensors - -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set -CONFIG_PWM_SUN4I=y - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_GIC=y -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_AL_FIC is not set -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_ARCH_HAS_RESET_CONTROLLER=y -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_BRCMSTB_RESCAL is not set -# CONFIG_RESET_INTEL_GW is not set -CONFIG_RESET_SIMPLE=y -CONFIG_RESET_SUNXI=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_GENERIC_PHY_MIPI_DPHY=y -CONFIG_PHY_SUN4I_USB=y -CONFIG_PHY_SUN6I_MIPI_DPHY=y -CONFIG_PHY_SUN9I_USB=y -# CONFIG_PHY_SUN50I_USB3 is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_CPCAP_USB is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_ARM_CCI_PMU is not set -# CONFIG_ARM_CCN is not set -CONFIG_ARM_PMU=y -# end of Performance monitor support - -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -CONFIG_NVMEM_SUNXI_SID=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -# CONFIG_TMPFS_XATTR is not set -CONFIG_MEMFD_CREATE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_HW=y -CONFIG_CRYPTO_DEV_ALLWINNER=y -CONFIG_CRYPTO_DEV_SUN4I_SS=y -# CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG is not set -# CONFIG_CRYPTO_DEV_SUN8I_CE is not set -# CONFIG_CRYPTO_DEV_SUN8I_SS is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_CCREE is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -# CONFIG_ASYMMETRIC_KEY_TYPE is not set - -# -# Certificates for signature checking -# -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_CRC_CCITT=y -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_DECOMPRESS_ZSTD=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_DMA_OPS=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y -CONFIG_DMA_NONCOHERENT_MMAP=y -CONFIG_DMA_REMAP=y -CONFIG_DMA_CMA=y - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=16 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_32=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -# CONFIG_DEBUG_KERNEL is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_SLUB_DEBUG_ON is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -CONFIG_DEBUG_MEMORY_INIT=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# end of Memory Debugging - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set - -# -# Debug kernel data structures -# -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# -# RCU Debugging -# -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# end of RCU Debugging - -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# arm Debugging -# -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_ARM=y -CONFIG_ARM_UNWIND=y -# CONFIG_DEBUG_USER is not set -CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" -CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" -# CONFIG_PID_IN_CONTEXTIDR is not set -# CONFIG_CORESIGHT is not set -# end of arm Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_BITOPS is not set -# CONFIG_TEST_VMALLOC is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_TEST_BLACKHOLE_DEV is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_TEST_KMOD is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/cubie/board/kea6.conf b/mainboards/cubie/board/kea6.conf deleted file mode 100644 index faff15cd..00000000 --- a/mainboards/cubie/board/kea6.conf +++ /dev/null @@ -1,58 +0,0 @@ -{ -# DHCPv6 configuration starts on the next line -"Dhcp6": { - -# First we set up global values - "valid-lifetime": 4000, - "renew-timer": 1000, - "rebind-timer": 2000, - "preferred-lifetime": 3000, - -# Next we setup the interfaces to be used by the server. - "interfaces-config": { - "interfaces": [ "enx00e04c6800ee"] - }, - -# And we specify the type of lease database - "lease-database": { - "type": "memfile", - "persist": true, - "name": "./kea/dhcp6.leases" - }, - -# Finally, we list the subnets from which we will be leasing addresses. - "subnet6": [ - { - "rapid-commit": true, - "subnet": "2001:db8:0:1::/56", - "id": 1024, - "interface": "enx00e04c6800ee", - "pools": [ - { - "pool": "2001:db8:0:1::10-2001:db8:0:1::ffff" - } - ] - } - ], - - "option-data": [ - { - "name": "dns-servers", - "code": 23, - "csv-format": true, - "space": "dhcp6", - "data": "2001:4860:4860::8888, 2001:4860:4860::8844" - }, - { - "name": "bootfile-url", - "code": 59, - "csv-format": true, - "space": "dhcp6", - "data": "http://[2001:db8:0:1::128]:80/nbp" - } - ] -# DHCPv6 configuration ends with the next line -} - -} - diff --git a/mainboards/cubie/board/nbp b/mainboards/cubie/board/nbp deleted file mode 100755 index c02f090d..00000000 --- a/mainboards/cubie/board/nbp +++ /dev/null @@ -1,4 +0,0 @@ -#!ipxe -kernel http://[2001:db8:0:1::128]:80/uImage -initrd http://[2001:db8:0:1::128]:80/uCore -boot diff --git a/mainboards/digitalloggers/atomicpi/.gitignore b/mainboards/digitalloggers/atomicpi/.gitignore deleted file mode 100644 index f64b3b28..00000000 --- a/mainboards/digitalloggers/atomicpi/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -/*.cpio -/*.lzma -/linux -/*kernel diff --git a/mainboards/digitalloggers/atomicpi/50-cloud-init.yaml b/mainboards/digitalloggers/atomicpi/50-cloud-init.yaml deleted file mode 100644 index 3fb18bc5..00000000 --- a/mainboards/digitalloggers/atomicpi/50-cloud-init.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# This file is generated from information provided by -# the datasource. Changes to it will not persist across an instance. -# To disable cloud-init's network configuration capabilities, write a file -# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: -# network: {config: disabled} -network: - ethernets: - ens33: - addresses: [] - dhcp4: true - enx00e04c68017a: - addresses: [192.168.0.1/24, "2001:db8:0:1::129/56"] - dhcp4: false - enxa0cec8cbc29b: - addresses: [192.168.0.1/24, "2001:db8:0:1::129/56"] - dhcp4: false - enx00e04c6800ee: - addresses: [192.168.0.1/24, "2001:db8:0:1::129/56"] - dhcp4: false - enx00e04c680a0f: - addresses: [192.168.0.1/24, "2001:db8:0:1::129/56"] - dhcp4: false - version: 2 diff --git a/mainboards/digitalloggers/atomicpi/CHOOSEKERNEL b/mainboards/digitalloggers/atomicpi/CHOOSEKERNEL deleted file mode 100755 index 1836c6cf..00000000 --- a/mainboards/digitalloggers/atomicpi/CHOOSEKERNEL +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -utk \ - -xzPath \ - /usr/bin/xz \ - upimagewithup2dxeremovemore.bin \ - replace_pe32 \ - Shell_Full \ - $1 \ - save \ - /tmp/xxx.bin diff --git a/mainboards/digitalloggers/atomicpi/Makefile b/mainboards/digitalloggers/atomicpi/Makefile deleted file mode 100644 index 0e7ff33b..00000000 --- a/mainboards/digitalloggers/atomicpi/Makefile +++ /dev/null @@ -1,272 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make flashpxeboot.bin -# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make flashpxeboot.bin -# cpu board flashrom -w flashpxeboot.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make flashpxeboot.bin -# flashrom -w flashpxeboot.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# flashpxeboot.bin produces a flash image which will pxeboot. -# cpu.bin produces a flash image that starts a cpu daemon. -# -# You can test the flash image kernel with qemu -# make flashtest - -default: sshdkernel flash cpukernel - -flash: flashpxeboot.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -flashpxeboot.bin: edk2.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell flashkernel \ - save $@ - dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -cpu.bin: edk2.bin cpuflashkernel cpu.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell cpuflashkernel \ - save $@ - NOT GOING dd if=cpu.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -edk2.bin: dxeremove.bin - echo Note, this inserts the edk2 bds and shell - echo Only flash this image if you have an sf100. - echo It will not be able to boot anything. - utk \ - -xzPath /usr/bin/xz \ - $< \ - insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ - save $@ - -dxeremove.bin: hap.bin - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - remove Ahci.* \ - remove AMITSE \ - remove AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - remove Bds \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - comment S3Save_do_not_remove_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment CrbTpm20Acpi \ - comment TcgSmm \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - save $@ - chmod a-w $@ - -hap.bin: tighten.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpuflashkernel: cpu.cpio.lzma cpuflash.config - cp cpuflash.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrdmem=0xff968000,%s"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/digitalloggers/atomicpi/READROM b/mainboards/digitalloggers/atomicpi/READROM deleted file mode 100755 index ec91a4aa..00000000 --- a/mainboards/digitalloggers/atomicpi/READROM +++ /dev/null @@ -1 +0,0 @@ -sudo flashrom -p dediprog:voltage=1.8 -r $* diff --git a/mainboards/digitalloggers/atomicpi/TESTOVMF b/mainboards/digitalloggers/atomicpi/TESTOVMF deleted file mode 100755 index fc07122c..00000000 --- a/mainboards/digitalloggers/atomicpi/TESTOVMF +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -set -e -rm -f /tmp/xxx.bin -utk -xzPath /usr/bin/xz \ - /mnt/hgfs/rminnich/Downloads/OVMF.fd \ - remove BdsDxe insert_dxe up2bds.ffs \ - remove Shell insert_dxe up2shellfull.ffs \ - save /tmp/xxx.fd -/usr/bin/qemu-system-x86_64 -nographic -net none -bios /tmp/xxx.fd diff --git a/mainboards/digitalloggers/atomicpi/UTKDEMO b/mainboards/digitalloggers/atomicpi/UTKDEMO deleted file mode 100755 index f539b4b4..00000000 --- a/mainboards/digitalloggers/atomicpi/UTKDEMO +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash -set -e -echo "Make sure me_cleaner.py is in our path" -which me_cleaner.py -echo "Make sure utk is in our path" -which utk -echo "Make sure guid2english is in our path" -which guid2english -echo "Let's go!" -touch image.bin -read -p "Hit return to see the original UEFI image structure" -utk image.bin table | guid2english | less -echo "Cut the ME area down to a smaller area" -make tighten.bin -read -p "hit to see the changed UEFI structure" i -utk tighten.bin table | guid2english | less -read -p "hit return to continue to setting HAP bit" i -chmod +w hap.bin -make hap.bin -# read -p "hit return to continue" i -# utk hap.bin table | guid2english | less -read -p "hit return to remove DXEs" i -chmod +w dxeremove.bin -make dxeremove.bin -# read -p "hit return to see the post-removal table" i -# utk dxeremove.bin table | guid2english | less -read -p "Hit return to add BdsDxe and UEFIShellDxe built from source" i -make edk2.bin -read -p "hit return to see the new UEFI image" i -utk edk2.bin table | guid2english | less -read -p "hit return to Replace shell binary with kernel and add initramfs" i -make tiny.bin -read -p "hit return to see the final image" i -utk tiny.bin table | guid2english | less -read -p "to see how the kernel finds the initrd hit return" i -grep initrd= linux/.config diff --git a/mainboards/digitalloggers/atomicpi/VERIFYROM b/mainboards/digitalloggers/atomicpi/VERIFYROM deleted file mode 100755 index caf96f64..00000000 --- a/mainboards/digitalloggers/atomicpi/VERIFYROM +++ /dev/null @@ -1 +0,0 @@ -sudo flashrom -p dediprog:voltage=1.8 -v $* diff --git a/mainboards/digitalloggers/atomicpi/WRITEROM b/mainboards/digitalloggers/atomicpi/WRITEROM deleted file mode 100755 index cbcd7557..00000000 --- a/mainboards/digitalloggers/atomicpi/WRITEROM +++ /dev/null @@ -1 +0,0 @@ -sudo flashrom -p dediprog:voltage=1.8 -w $* diff --git a/mainboards/digitalloggers/atomicpi/class_key b/mainboards/digitalloggers/atomicpi/class_key deleted file mode 100644 index e21ff15c..00000000 --- a/mainboards/digitalloggers/atomicpi/class_key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA4zGICkjqlAPbYH0MZGN79zDJi88uC1pbc7cUcHQPp8R9iet0 -2Q594DiOsJhAc9ALDkVopAmDMew1OO9vwZXAkv00hPhnEHFSXJP31zaoWvQkbS/Z -/Ghl8gTTrPpJo+gJ3kCINwM1Z+IEQbjlE1EsvgKQEWQMCN32cD52F1L0UpkRaRzP -FKKxfMOKYCIIbFDbC1iAAsjuIOunlATy4OT1IbNBhkdX2Mx2kTchaJxry4LL+NDs -sIvfrtMJ/5gmIWKYnc4mXr2ozD4ZvCm7ooEnQshSgXXTpjl1AuEJvnaczr+ij66w -KUQhzK3Ukjo99b8xhih4pVlU661KAbezziyuFwIDAQABAoIBAFbib1s3jXYzj2b0 -C5Qss5DR+JHeFobC9GxpXIiw6ffH3harlBEaSKtCFdeVMjjYHBJGGwF4ndKuuZ/f -eYa35WCRMs+TS57vJ4c+Ey8buQCnk3KqNRwhNLN8gxMI2La1G2kCltUrBfaHagdU -VU6w4YJ86mmsMCoH8KH2USUUVVlsdbEgi6oQzPusw4le8a4shTX40YaBi90hv7XX -MshqZDscjM/mqXJVMq8fLJ6IDYeNVLNw3GhlHrlitO2Kheil7ptgrftYdTVqvScR -VNL4lFP6rq3N1BN0eisAwyB2A0mf/sCVc0fKA0qsNsODoVw9g7HBTjx6IFpbQ0Kh -derDBgkCgYEA+tAZftg8z2A+YFdA/fTGxLS82BCsIKJ1kaizDWcshcdZ6AQ2vNwT -JwxzOwiS/Tu1hqNHaE0tYV9cW8hKZC2CdsIquPEEewPNqnwzh6bhUiPmjlPF3Dea -pX2LHklCAOXLtnJqf1ZmbhhWbj/2TIITr/Iq5ae5rk32QAwsyvphswMCgYEA5+Rh -rMVYlXLSss/9rl+89ecrj0ZmXK5HNsheHdI+444wSgIoNP90Z7FHygDAWSV+RWsN -ibpEQxACGhtSgK6IU+9w35fXrEcTfTwyrC5lMxipS5BCkBTSNm9QfASaIZE4Oz+d -Z0ifjCCeG8ppZm/kVscP08BYNsuu3xSttDDi4l0CgYEAizhcDpbFGm9X8G4+ezkV -5DZW5LBMe0jybcnwqa3tfsyrUSiVobufPfuhMtGNlddA6d1UU8cTO4uNXr0M3hKM -6pLY2BOg4w+3Z7zNdaziQY//+Fzz5UtQIjBPup37bzgfHcTg7JHvBYmo4EXM16cU -eoO34AZ8AQ7xc5fOfVUCSjUCgYEA5Pn9fMVtYDz+UnTQkQOWKdZ3i8U/RFsOlMir -LpUxZi87/Yg9vX9VqSJDufKd/Cjqk49O0eWsi+/ds3uxLsGoegEgGpjr7QBN/UaY -3q39XcQHP0cWgwEcRYYLGjrNG0IzHUYGnjr22D5JATYQd4cbGJj9RuFR+eGMLllT -4G65Sj0CgYEAptcid0C4Dodg2LeA+E0dduec9uK4Qj4NkeoEcTw6fBInuP9vkIU7 -LyHDfXKVbCTHC79oc8oQ8OpeVvH999PU15g7MFAUdjrd2MCIEWcQ9WjJr0V3sVn4 -Nze3kVUWRsXhIoG0yWh6SHbc/HKFhKymtxvdPnbP4qajfcCGIKuIA2c= ------END RSA PRIVATE KEY----- diff --git a/mainboards/digitalloggers/atomicpi/class_key.pub b/mainboards/digitalloggers/atomicpi/class_key.pub deleted file mode 100644 index 5db12a16..00000000 --- a/mainboards/digitalloggers/atomicpi/class_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDjMYgKSOqUA9tgfQxkY3v3MMmLzy4LWltztxRwdA+nxH2J63TZDn3gOI6wmEBz0AsORWikCYMx7DU472/BlcCS/TSE+GcQcVJck/fXNqha9CRtL9n8aGXyBNOs+kmj6AneQIg3AzVn4gRBuOUTUSy+ApARZAwI3fZwPnYXUvRSmRFpHM8UorF8w4pgIghsUNsLWIACyO4g66eUBPLg5PUhs0GGR1fYzHaRNyFonGvLgsv40Oywi9+u0wn/mCYhYpidziZevajMPhm8KbuigSdCyFKBddOmOXUC4Qm+dpzOv6KPrrApRCHMrdSSOj31vzGGKHilWVTrrUoBt7POLK4X rminnich@xcpu diff --git a/mainboards/digitalloggers/atomicpi/classhostkey b/mainboards/digitalloggers/atomicpi/classhostkey deleted file mode 100644 index 9b696249..00000000 --- a/mainboards/digitalloggers/atomicpi/classhostkey +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA20e7SsGzrPyXMosKhgXMbvIPSe27ilhgcWw4I1NWsPMWhYEU -DnM66JiqImyN3tTiimwH7WewKxy4opGLbk2ohYvNQBALNXNr1cV7usAQREAIbafp -zZ6mO0gcWjrdsN31aTzMmEXO3dkS+wtEQzKBe/eFjlJbutHvEQkvYWtPeHTtBlVy -wcJEc59orcE+HNXrXLcPuJZF37Z5HkEMNGDWvAutHmnXc3C0cKd+bOdhpTx7DAaW -Fmj1GdL7WMPBQk1qKo4uE8lqOjTB5qwCGhWPtZFgD6QwYIKtZ/VFWMzUytc6ciRw -b5ob6+0+mbL3IFb1XZDbOC3gSbGPV4V0xZrVtwIDAQABAoIBABlIF+vykUishrIp -Hbl+Cafw+JpJconszpHFLGPGRAR6wmn6C9nupygSEeuOIH1Ehin3cqKIheMymIcF -yNGa2ocrKyrrrp8nA5POBQnvAvEbgN1Dss0mMXw8QCiXCOBPdu//NoeH5OXnFS0k -i2ZD+HHWg+t4y2Kqual5KaFNwgfdHJw9vmL/JFzzx2ZuVmIiAl7Pn9dNAu3JgaT2 -cHNEPxw04Pc0rsNd9NiMEuaijRPJhn2ZeDAdyo+RvrK6wI0ZiopG+3ZztKhJ65zT -7si2DjLpr8PMMgYPgMFy1YyoPKokYqnoSrLXMh2Lquy75145aysWNxVa640MNfp6 -vrFSCqECgYEA9T5GkrZ+7DCJfaPST7lqDBB7uON0DAYaSwUSxNVsu+UMAxSlXB25 -fYq3TzJzM+rJcDf5JPQLP2gD2BMYQIQZeHsgoV1UKVxZfJi3YpPCg3uNWxLTzut7 -TGawJBFULNoIrsxh0gLSsFP4RcDTWNUe31+3sD8SirrEz+GWjF9Nc0UCgYEA5OXt -uApDOx8q6XkjNwMNZZJdQ+VeDQh8Wg8mPDNKwg7VejI7idV87tn7LjAa4TcKemRi -WnLMeb98h0VZiWve2UwstiI5yiZon3f7jEJDop9jvg8/Cj2MgEc2hxKxZQxIN2k3 -sFfYMUtTr4Q2WT3Gm3aNERpgjhJjf2dFvMJulssCgYBHSUTmXJnkOe+dT8NQXUsQ -GrJ7+dG/tP5rlBvyjz8+FsQ5GQVAE3vZnDrQkI+gJb1MG1kWfsHOOoPziQlhp4Rn -2xKPFTvjke6JIzMbOmwuH/nk4UIkQZrjiG3m7gqTxwUDGnHMw/lOO/pM/FHy3nBM -6dvRJWRUYxnWe3JxdzpiKQKBgEzBLS2Bg3nXwbP4gu53f46Hve5+g0MrjUdFvTSC -npbkEoGfRoe5puMRBUE/sEPFCSZxcumRhS9uHnvdrWB/Y4LKIFQStf4rUvnmadtm -fPeTKwcYZbMxYGPDfW1dv057B9xM0/e1/TDKaY15cCAMrwSChFsv1SDO2b5nCuN4 -70xxAoGAbRDd2cxSICb+msM17yF1rGEzvcJRI1rjiTK71Gkt2VqfBPk1belz1vY8 -E/KkPMHwhWEMSuCrXnaxYrLZg4cvtbYy7tC+wgn1nXwfON8Cpmm74s0O6ufeE7dh -S4Bsitze0ougzTMGLQO/9M7He/fPqjM4DIi+PvfpAl/ZUXdD/48= ------END RSA PRIVATE KEY----- diff --git a/mainboards/digitalloggers/atomicpi/classhostkey.pub b/mainboards/digitalloggers/atomicpi/classhostkey.pub deleted file mode 100644 index 5c61a524..00000000 --- a/mainboards/digitalloggers/atomicpi/classhostkey.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDbR7tKwbOs/JcyiwqGBcxu8g9J7buKWGBxbDgjU1aw8xaFgRQOczromKoibI3e1OKKbAftZ7ArHLiikYtuTaiFi81AEAs1c2vVxXu6wBBEQAhtp+nNnqY7SBxaOt2w3fVpPMyYRc7d2RL7C0RDMoF794WOUlu60e8RCS9ha094dO0GVXLBwkRzn2itwT4c1etctw+4lkXftnkeQQw0YNa8C60eaddzcLRwp35s52GlPHsMBpYWaPUZ0vtYw8FCTWoqji4TyWo6NMHmrAIaFY+1kWAPpDBggq1n9UVYzNTK1zpyJHBvmhvr7T6ZsvcgVvVdkNs4LeBJsY9XhXTFmtW3 rminnich@xcpu diff --git a/mainboards/digitalloggers/atomicpi/cpu.config b/mainboards/digitalloggers/atomicpi/cpu.config deleted file mode 100644 index 40b7a35e..00000000 --- a/mainboards/digitalloggers/atomicpi/cpu.config +++ /dev/null @@ -1,2654 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.6.0-rc6 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -CONFIG_EFI_DISABLE_PCI_DMA=y -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/digitalloggers/atomicpi/cpuflash.config b/mainboards/digitalloggers/atomicpi/cpuflash.config deleted file mode 100644 index e2fccc12..00000000 --- a/mainboards/digitalloggers/atomicpi/cpuflash.config +++ /dev/null @@ -1,2650 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.6.0-rc6 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff968000,0x200000" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -CONFIG_EFI_DISABLE_PCI_DMA=y -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/digitalloggers/atomicpi/dhcpd.config.192.168.0.1 b/mainboards/digitalloggers/atomicpi/dhcpd.config.192.168.0.1 deleted file mode 100644 index 37bed9ed..00000000 --- a/mainboards/digitalloggers/atomicpi/dhcpd.config.192.168.0.1 +++ /dev/null @@ -1,22 +0,0 @@ -allow booting; -allow bootp; -option option-128 code 128 = string; -option option-129 code 129 = text; -next-server 192.168.0.1; -filename "grubnetx64.efi.signed"; -option domain-name "coreboot.org"; -option domain-name-servers ns1.google.com, ns2.google.com; -default-lease-time 600; -max-lease-time 7200; -ddns-update-style none; -authoritative; -default-lease-time 600; -max-lease-time 7200; -log-facility local7; -subnet 192.168.0.0 netmask 255.255.255.0 { - option routers 192.168.0.1; - # Specify the subnet-mask - option subnet-mask 255.255.255.0; - # Specify the range of leased IP addresses - range 192.168.0.2 192.168.0.128; -} diff --git a/mainboards/digitalloggers/atomicpi/edk2bdsdxe.ffs b/mainboards/digitalloggers/atomicpi/edk2bdsdxe.ffs deleted file mode 100644 index 69c06169..00000000 Binary files a/mainboards/digitalloggers/atomicpi/edk2bdsdxe.ffs and /dev/null differ diff --git a/mainboards/digitalloggers/atomicpi/edk2shell.ffs b/mainboards/digitalloggers/atomicpi/edk2shell.ffs deleted file mode 100644 index 96424f31..00000000 Binary files a/mainboards/digitalloggers/atomicpi/edk2shell.ffs and /dev/null differ diff --git a/mainboards/digitalloggers/atomicpi/flash.config b/mainboards/digitalloggers/atomicpi/flash.config deleted file mode 100644 index 6815eb76..00000000 --- a/mainboards/digitalloggers/atomicpi/flash.config +++ /dev/null @@ -1,1934 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.6.0-rc6 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/digitalloggers/atomicpi/grub/grub.cfg b/mainboards/digitalloggers/atomicpi/grub/grub.cfg deleted file mode 100644 index 18979e22..00000000 --- a/mainboards/digitalloggers/atomicpi/grub/grub.cfg +++ /dev/null @@ -1,14 +0,0 @@ -timeout=0 -menuentry "NERF with linuxboot build no graphics" { - linux kernel ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 - initrd /initramfs.linux_amd64.cpio.lzma -} - -menuentry "NERF with linuxboot build no graphics and a netconsole" { - linux kernel ip=dhcp earlyprintk=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ - initrd /initramfs.linux_amd64.cpio.lzma -} - -menuentry "NERF with linuxboot build no graphics initramfs in SPI" { - linux kernel ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 initrd=0xff968000,1294143 -} diff --git a/mainboards/digitalloggers/atomicpi/grubnetx64.efi.signed b/mainboards/digitalloggers/atomicpi/grubnetx64.efi.signed deleted file mode 100644 index cbe1f5d2..00000000 Binary files a/mainboards/digitalloggers/atomicpi/grubnetx64.efi.signed and /dev/null differ diff --git a/mainboards/digitalloggers/atomicpi/linuxboot-linux.netboot.config b/mainboards/digitalloggers/atomicpi/linuxboot-linux.netboot.config deleted file mode 100644 index d032d885..00000000 --- a/mainboards/digitalloggers/atomicpi/linuxboot-linux.netboot.config +++ /dev/null @@ -1,1699 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_RELAY is not set -# CONFIG_BLK_DEV_INITRD is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -# CONFIG_FUTEX is not set -# CONFIG_EPOLL is not set -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -# CONFIG_X86_FEATURE_NAMES is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -# CONFIG_ARCH_RANDOM is not set -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200 acpi.debug_level=0 acpi.debug_layer=0 noefi" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -# CONFIG_BINFMT_ELF is not set -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -# CONFIG_PACKET is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y - -# -# Network testing -# -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -# CONFIG_PROC_FS is not set -# CONFIG_PROC_CHILDREN is not set -# CONFIG_SYSFS is not set -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -# CONFIG_CRYPTO is not set - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y diff --git a/mainboards/digitalloggers/atomicpi/linuxboot-linux.tiny.config b/mainboards/digitalloggers/atomicpi/linuxboot-linux.tiny.config deleted file mode 100644 index 74bbc370..00000000 --- a/mainboards/digitalloggers/atomicpi/linuxboot-linux.tiny.config +++ /dev/null @@ -1,1922 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -CONFIG_DEVPORT=y diff --git a/mainboards/digitalloggers/atomicpi/loopprint0.asm b/mainboards/digitalloggers/atomicpi/loopprint0.asm deleted file mode 100644 index 4b9873e5..00000000 --- a/mainboards/digitalloggers/atomicpi/loopprint0.asm +++ /dev/null @@ -1,116 +0,0 @@ -# nasm -f bin -bits 64 -section .header -DOS: - dw 0x5a4d ;e_magic - times 29 dw 0 ;unused - dd 0x40 ;e_lfanew - -PECOFF: - dd `PE\0\0` ;Signature - dw 0x8664 ;Machine - dw 3 ;NumberOfSections - dd 0 ;TimeDateStamp - dd 0 ;PointerToSymbolTable - dd 0 ;NumberOfSymbols - dw 160 ;SizeOfOptionalHeader - dw 0x202 ;Characteristics - dw 0x20b ;Magic - db 0 ;MajorLinkerVersion - db 0 ;MinorLinkerVersion - dd 0x200 ;SizeOfCode - dd 0x400 ;SizeOfInitializedData - dd 0 ;SizeOfUninitializedData - dd 0x0 ;AddressOfEntryPoint - dd 0x0 ;BaseOfCode - dq 0x0 ;ImageBase - dd 0x1000 ;SectionAlignment - dd 0x200 ;FileAlignment - dw 0 ;MajorOperatingSystemVersion - dw 0 ;MinorOperatingSystemVersion - dw 0 ;MajorImageVersion - dw 0 ;MinorImageVersion - dw 0 ;MajorSubsystemVersion - dw 0 ;MinorSubsystemVersion - dd 0 ;Reserved - dd 0x3000 ;SizeOfImage - dd 0x200 ;SizeOfHeaders - dd 0 ;CheckSum - dw 10 ;Subsystem - dw 0 ;DllCharacteristics - dq 0 ;SizeOfStackReserve - dq 0 ;SizeOfStackCommit - dq 0 ;SizeOfHeapReserve - dq 0 ;SizeOfHeapCommit - dd 0 ;LoaderFlags - dd 6 ;NumberOfRvaAndSizes - -DIRS: - times 40 db 0 ;unused dirs for this app - dd 0x1000 ;VirtualAddress(.reloc) - dd 8 ;Size(.reloc) - -SECTS: -.1: - dq `.text` ;Name - dd codesize ;VirtualSize - dd 0x0 ;VirtualAddress - dd 0x200 ;SizeOfRawData - dd 0x200 ;PointerToRawData - dd 0 ;PointerToRelocations - dd 0 ;PointerToLinenumbers - dw 0 ;NumberOfRelocations - dw 0 ;NumberOfLinenumbers - dd 0x60500020 ;Characteristics - -.2: - dq `.reloc` - dd 0x8 - dd 0x1000 - dd 0x200 - dd 0x400 - dd 0 - dd 0 - dw 0 - dw 0 - dd 0x42100040 - -.3: - dq `.data` - dd datasize - dd 0x2000 - dd 0x200 - dd 0x600 - dd 0 - dd 0 - dw 0 - dw 0 - dd 0xc0100040 - -section .text follows=.header align=0x200 -a: - mov rax, 48 - mov rdx, 1016 - db 0xee - jmp a - sub rsp, 40 - - mov rcx, [rdx+64] - lea rdx, [rel hello] - call [rcx+8] - - add rsp, 40 - ret - -codesize equ $ - $$ - -section .reloc follows=.text align=0x200 - dd 0 ;PageRVA - dd 8 ;BlockSize - -section .data follows=.reloc align=0x200 vstart=0x2200 ;yeah this is the trick! -hello: - db __utf16__ `hello world!\n\r\0` - -datasize equ $ - $$ -align 0x200,db 0 diff --git a/mainboards/digitalloggers/atomicpi/netconsole b/mainboards/digitalloggers/atomicpi/netconsole deleted file mode 100755 index 27429457..00000000 --- a/mainboards/digitalloggers/atomicpi/netconsole +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -netcat -l -u 192.168.0.1 6666 diff --git a/mainboards/digitalloggers/atomicpi/pxelinux.cfg/C0A80002 b/mainboards/digitalloggers/atomicpi/pxelinux.cfg/C0A80002 deleted file mode 100644 index b0f8d162..00000000 --- a/mainboards/digitalloggers/atomicpi/pxelinux.cfg/C0A80002 +++ /dev/null @@ -1,27 +0,0 @@ -prompt 0 -timeout 300 -ONTIMEOUT local -DEFAULT cpu - -MENU TITLE PXE Menu - -LABEL flash - MENU LABEL flash - kernel http://192.168.0.1/tinykernel - append ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 memmap=256M!1G netconsole=6666@192.168.0.2/,6666@192.168.0.1/ - -LABEL reflash - MENU LABEL reflash - kernel http://192.168.0.1/sshdkernel - append ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ intel-spi.writeable=1 debug loglevel=8 - -LABEL reflashslow - MENU LABEL reflash - kernel sshdkernel - append ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ intel-spi.writeable=1 debug loglevel=8 - -LABEL cpu - MENU LABEL cpu - kernel http://192.168.0.1/cpukernel - append ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ intel-spi.writeable=1 debug loglevel=8 - diff --git a/mainboards/digitalloggers/atomicpi/pxelinux.cfg/default b/mainboards/digitalloggers/atomicpi/pxelinux.cfg/default deleted file mode 100644 index b0f8d162..00000000 --- a/mainboards/digitalloggers/atomicpi/pxelinux.cfg/default +++ /dev/null @@ -1,27 +0,0 @@ -prompt 0 -timeout 300 -ONTIMEOUT local -DEFAULT cpu - -MENU TITLE PXE Menu - -LABEL flash - MENU LABEL flash - kernel http://192.168.0.1/tinykernel - append ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 memmap=256M!1G netconsole=6666@192.168.0.2/,6666@192.168.0.1/ - -LABEL reflash - MENU LABEL reflash - kernel http://192.168.0.1/sshdkernel - append ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ intel-spi.writeable=1 debug loglevel=8 - -LABEL reflashslow - MENU LABEL reflash - kernel sshdkernel - append ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ intel-spi.writeable=1 debug loglevel=8 - -LABEL cpu - MENU LABEL cpu - kernel http://192.168.0.1/cpukernel - append ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ intel-spi.writeable=1 debug loglevel=8 - diff --git a/mainboards/digitalloggers/atomicpi/pxelinux.cfg_default b/mainboards/digitalloggers/atomicpi/pxelinux.cfg_default deleted file mode 100644 index a2bec832..00000000 --- a/mainboards/digitalloggers/atomicpi/pxelinux.cfg_default +++ /dev/null @@ -1,27 +0,0 @@ -prompt 0 -timeout 300 -ONTIMEOUT local -DEFAULT cpu - -MENU TITLE PXE Menu - -LABEL flash - MENU LABEL flash - kernel http://192.168.0.1/tinykernel - append initrd=http://192.168.0.1/flashinitramfs.cpio.lzma ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 memmap=256M!1G netconsole=6666@192.168.0.2/,6666@192.168.0.1/ - -LABEL reflash - MENU LABEL reflash - kernel http://192.168.0.1/kernel - append initrd=http://192.168.0.1/biguroot.cpio.lzma ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ intel-spi.writeable=1 debug loglevel=8 - -LABEL reflashslow - MENU LABEL reflash - kernel kernel - append initrd=/biguroot.cpio.lzma ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ intel-spi.writeable=1 debug loglevel=8 - -LABEL cpu - MENU LABEL cpu - kernel http://192.168.0.1/kernel - append initrd=http://192.168.0.1/initramfs.linux_amd64.cpio.lzma ip=dhcp earlyprintk=ttyS0,115200 console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ intel-spi.writeable=1 debug loglevel=8 - diff --git a/mainboards/digitalloggers/atomicpi/sshd.config b/mainboards/digitalloggers/atomicpi/sshd.config deleted file mode 100644 index aac7c841..00000000 --- a/mainboards/digitalloggers/atomicpi/sshd.config +++ /dev/null @@ -1,2624 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/digitalloggers/atomicpi/tftpserve b/mainboards/digitalloggers/atomicpi/tftpserve deleted file mode 100755 index 54651989..00000000 --- a/mainboards/digitalloggers/atomicpi/tftpserve +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -set -e - -echo https://wiki.up-community.org/Enable_PXE_boot -sudo netplan apply -ip a -sudo service isc-dhcp-server restart -sudo systemctl restart tftpd-hpa -echo Serving IP4 but you can get ip6 via other means -echo dont forget to get this -echo http://archive.ubuntu.com/ubuntu/dists/trusty/main/uefi/grub2-amd64/current/grubnetx64.efi.signed - -exit 0 -mkdir -p /tmp/kea -sudo kea-dhcp6 -d -d -d -c ~/bin/kea6.conf - - -echo sudo tar xvf /mnt/hgfs/rminnich/Downloads/netboot.tar.gz diff --git a/mainboards/hpe/dl360gen10/Makefile b/mainboards/hpe/dl360gen10/Makefile deleted file mode 100644 index c35ef9db..00000000 --- a/mainboards/hpe/dl360gen10/Makefile +++ /dev/null @@ -1,151 +0,0 @@ -MAJOR ?= 5 -STABLE = $(MAJOR).4 -CONFIG ?= $(MAJOR).4.0 -KEYPATH ?= "" - -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel - utk \ - -xzPath /usr/bin/xz \ - ROM.bin \ - remove TraceHubStatusCodeHandlerRuntimeDxe \ - remove TraceHubStatusCodeHandlerSmm \ - remove StatusCodeHandlerRuntimeDxeUsb \ - remove DataHubDxe \ - remove HpBootMenuApp \ - remove TxtDxe \ - remove HstiIhvProviderDxe \ - remove LegacyRegion2 \ - remove EbcDxe \ - remove LegacyInterrupt \ - remove PciHotPlug \ - remove HwpLvtSmm \ - remove IsPlatformSupportWhea \ - remove WheaSupport \ - remove WheaErrorInj \ - remove WheaPlatformBoot \ - remove WheaErrorLog \ - remove LastBootErrorLog \ - remove McBankErrorInjection \ - remove OpaPlatCfg \ - remove DataHubStdErrDxe \ - remove HpLogStdErrToMem \ - remove HpBiosLogToAhsDxe \ - remove HpBiosLogToAhsSmm \ - remove ServerConfigLock \ - remove ServerConfigLockDxe \ - remove IntelligentProvisioningApp \ - remove ErrorInformationApp \ - remove ImlViewApp \ - remove EmbeddedDiagsApp \ - remove HpPlotPciRebootTestDriver \ - remove HpNvDimmDxe \ - remove HpNvDimmBlkIoDxe \ - remove NvDimmFwUpdate \ - remove HpType10NvdimmPowerMonitorDxe \ - remove FirmwarePerformanceSmm \ - remove HpType10NvdimmCommonDataDxe \ - remove HpNvDimmMemScan \ - remove HpNvDimmTelemetryDxe \ - remove BackupRestore \ - remove HpBackupRestoreDxe \ - remove HpSecureErase \ - remove HpSecureEraseDxe \ - remove TerminalDxe \ - remove IsaSerialDxe \ - remove LegacyBiosDxe \ - remove HpLegacyBootDxe \ - remove LegacyBiosPlatform \ - remove HpPostCodeWorkerDxe \ - remove HpPostCodeWorkerSmm \ - replace_pe32 Shell flashkernel \ - save image.bin - -flashkernel: uroot injectkeys bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -netboot: netbooturoot bzImage - cp linux/arch/x86/boot/bzImage kernel - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -netbooturoot: - u-root -build=bb -uinitcmd="hostname dl360Gen10" \ - github.com/u-root/u-root/cmds/core/hostname \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/id \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/sshd \ - github.com/u-root/u-root/cmds/core/scp \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/rsdp \ - github.com/u-root/u-root/cmds/boot/* - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux/ - -uroot: - u-root -build=bb -uinitcmd="hostname dl360Gen10" \ - github.com/u-root/u-root/cmds/core/hostname \ - github.com/u-root/u-root/cmds/core/dd \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/id \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/more \ - github.com/u-root/u-root/cmds/core/mount \ - github.com/u-root/u-root/cmds/core/sshd \ - github.com/u-root/u-root/cmds/core/scp \ - github.com/u-root/u-root/cmds/core/dmesg \ - github.com/u-root/u-root/cmds/core/grep \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/rsdp \ - github.com/u-root/u-root/cmds/boot/* - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-$(CONFIG) linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v$(MAJOR).x/linux-$(STABLE).tar.xz - xzcat kernel.xz | tar x - mv linux-$(STABLE) linux -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - @echo If you plan to flash to hardware, - @echo you will need to get a rom imagei - @echo and put it in rom.bin - @echo you can get it via wget, flashrom, whatever. - @echo If you are not targeting hardware, you can - @echo make flashkernel - @echo and run that kernel via qemu - -geturoot: - go get -v -u github.com/u-root/u-root - diff --git a/mainboards/hpe/dl360gen10/Makefile.rej b/mainboards/hpe/dl360gen10/Makefile.rej deleted file mode 100644 index 8952b2ad..00000000 --- a/mainboards/hpe/dl360gen10/Makefile.rej +++ /dev/null @@ -1,11 +0,0 @@ -diff a/mainboards/hpe/dl360gen10/Makefile b/mainboards/hpe/dl360gen10/Makefile (rejected hunks) -@@ -122,6 +122,9 @@ uroot: - github.com/u-root/u-root/cmds/boot/* - - cp /tmp/initramfs.linux_amd64.cpio . -+ lzma -k -f initramfs.linux_amd64.cpio -+ ls -l initramfs* -+ cp *lzma linux/ - - injectkeys: - ifneq ($(KEYPATH),"") diff --git a/mainboards/hpe/dl360gen10/README.md b/mainboards/hpe/dl360gen10/README.md deleted file mode 100644 index 30f91895..00000000 --- a/mainboards/hpe/dl360gen10/README.md +++ /dev/null @@ -1,10 +0,0 @@ -Copyright 2020 Hewlett Packard Enterprise Development LP. - -Initial support for DL360 Gen 10 -Maintainer: jean-marie.verdun@hpe.com / vejmarie - -"Code" inspired from the intel default motherboard - -Can be tested by using the public HPE Continuous Integration platform available at https://osfci.tech - -Feel free to contribute ! diff --git a/mainboards/hpe/dl360gen10/config-4.14.111 b/mainboards/hpe/dl360gen10/config-4.14.111 deleted file mode 100644 index e81b7fa3..00000000 --- a/mainboards/hpe/dl360gen10/config-4.14.111 +++ /dev/null @@ -1,2400 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/hpe/dl360gen10/config-5.4.0 b/mainboards/hpe/dl360gen10/config-5.4.0 deleted file mode 100644 index 4b2260ad..00000000 --- a/mainboards/hpe/dl360gen10/config-5.4.0 +++ /dev/null @@ -1,2945 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_64BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_ZPODD=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=3 -CONFIG_SATA_AHCI_PLATFORM=y -CONFIG_SATA_INIC162X=y -CONFIG_SATA_ACARD_AHCI=y -CONFIG_SATA_SIL24=y -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -# CONFIG_PDC_ADMA is not set -# CONFIG_SATA_QSTOR is not set -# CONFIG_SATA_SX4 is not set -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -CONFIG_ATA_PIIX=y -CONFIG_SATA_DWC=y -# CONFIG_SATA_DWC_OLD_DMA is not set -# CONFIG_SATA_DWC_DEBUG is not set -CONFIG_SATA_MV=y -CONFIG_SATA_NV=y -CONFIG_SATA_PROMISE=y -CONFIG_SATA_SIL=y -CONFIG_SATA_SIS=y -CONFIG_SATA_SVW=y -CONFIG_SATA_ULI=y -CONFIG_SATA_VIA=y -CONFIG_SATA_VITESSE=y - -# -# PATA SFF controllers with BMDMA -# -# CONFIG_PATA_ALI is not set -# CONFIG_PATA_AMD is not set -# CONFIG_PATA_ARTOP is not set -# CONFIG_PATA_ATIIXP is not set -# CONFIG_PATA_ATP867X is not set -# CONFIG_PATA_CMD64X is not set -# CONFIG_PATA_CYPRESS is not set -# CONFIG_PATA_EFAR is not set -# CONFIG_PATA_HPT366 is not set -# CONFIG_PATA_HPT37X is not set -# CONFIG_PATA_HPT3X2N is not set -CONFIG_PATA_HPT3X3=y -# CONFIG_PATA_HPT3X3_DMA is not set -# CONFIG_PATA_IT8213 is not set -# CONFIG_PATA_IT821X is not set -# CONFIG_PATA_JMICRON is not set -# CONFIG_PATA_MARVELL is not set -# CONFIG_PATA_NETCELL is not set -# CONFIG_PATA_NINJA32 is not set -# CONFIG_PATA_NS87415 is not set -# CONFIG_PATA_OLDPIIX is not set -# CONFIG_PATA_OPTIDMA is not set -# CONFIG_PATA_PDC2027X is not set -# CONFIG_PATA_PDC_OLD is not set -# CONFIG_PATA_RADISYS is not set -# CONFIG_PATA_RDC is not set -# CONFIG_PATA_SCH is not set -# CONFIG_PATA_SERVERWORKS is not set -# CONFIG_PATA_SIL680 is not set -CONFIG_PATA_SIS=y -# CONFIG_PATA_TOSHIBA is not set -# CONFIG_PATA_TRIFLEX is not set -# CONFIG_PATA_VIA is not set -# CONFIG_PATA_WINBOND is not set - -# -# PIO-only SFF controllers -# -# CONFIG_PATA_CMD640_PCI is not set -# CONFIG_PATA_MPIIX is not set -# CONFIG_PATA_NS87410 is not set -# CONFIG_PATA_OPTI is not set -# CONFIG_PATA_PCMCIA is not set -# CONFIG_PATA_PLATFORM is not set -# CONFIG_PATA_RZ1000 is not set - -# -# Generic fallback / legacy drivers -# -# CONFIG_PATA_ACPI is not set -CONFIG_ATA_GENERIC=y -# CONFIG_PATA_LEGACY is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -# CONFIG_USB_NET_DRIVERS is not set -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_CONN_GPIO=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -CONFIG_USB_DYNAMIC_MINORS=y -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_LEDS_TRIGGER_USBPORT=y -CONFIG_USB_AUTOSUSPEND_DELAY=2 -CONFIG_USB_MON=y - -# -# USB Host Controller Drivers -# -CONFIG_USB_C67X00_HCD=y -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -CONFIG_USB_EHCI_ROOT_HUB_TT=y -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -CONFIG_USB_EHCI_FSL=y -CONFIG_USB_EHCI_HCD_PLATFORM=y -CONFIG_USB_OXU210HP_HCD=y -CONFIG_USB_ISP116X_HCD=y -CONFIG_USB_FOTG210_HCD=y -CONFIG_USB_OXU210HP_HCD=m -CONFIG_USB_MAX3421_HCD=m -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -CONFIG_USB_U132_HCD=m -CONFIG_USB_SL811_HCD=y -CONFIG_USB_SL811_HCD_ISO=y -CONFIG_USB_SL811_CS=m -CONFIG_USB_R8A66597_HCD=m -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set -CONFIG_USB_HCD_BCMA=m -CONFIG_USB_HCD_SSB=m - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -CONFIG_USB_STORAGE_REALTEK=y -CONFIG_REALTEK_AUTOPM=y -CONFIG_USB_STORAGE_DATAFAB=y -CONFIG_USB_STORAGE_FREECOM=y -CONFIG_USB_STORAGE_ISD200=y -CONFIG_USB_STORAGE_USBAT=y -CONFIG_USB_STORAGE_SDDR09=y -CONFIG_USB_STORAGE_SDDR55=y -CONFIG_USB_STORAGE_JUMPSHOT=y -CONFIG_USB_STORAGE_ALAUDA=y -CONFIG_USB_STORAGE_ONETOUCH=y -CONFIG_USB_STORAGE_KARMA=y -CONFIG_USB_STORAGE_CYPRESS_ATACB=y -CONFIG_USB_STORAGE_ENE_UB6250=y -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set - -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set - -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_UDF_FS=y -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/hpe/dl360gen10/updateInitramfs.sh b/mainboards/hpe/dl360gen10/updateInitramfs.sh deleted file mode 100755 index 9a2df8f0..00000000 --- a/mainboards/hpe/dl360gen10/updateInitramfs.sh +++ /dev/null @@ -1,18 +0,0 @@ -rm -r tmp -mkdir tmp -cp initramfs.linux_amd64.cpio tmp -cd tmp -sudo cpio -idv < initramfs.linux_amd64.cpio -sudo mkdir etc/sshd -cd etc/sshd -sudo ssh-keygen -t rsa -P "$2" -f id_rsa 2>&1 >/dev/null -test -f "$1" && sudo cp $1 authorized_keys -cd ../.. -rm initramfs.linux_amd64.cpio -rm /tmp/initramfs.linux_amd64.cpio -sudo find . 2>/dev/null | sudo cpio -o -H newc -R root:root | xz -9 --format=lzma > /tmp/initramfs.linux_amd64.cpio.lzma -cd .. -sudo rm -r tmp -cp /tmp/initramfs.linux_amd64.cpio.lzma . -cp *lzma linux -exit 0 diff --git a/mainboards/intel/generic/.gitignore b/mainboards/intel/generic/.gitignore deleted file mode 100644 index 16580d9f..00000000 --- a/mainboards/intel/generic/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -image.bin -initramfs.linux_amd64.cpio -initramfs.linux_amd64.cpio.lzma -kernel -kernel.xz -linux -*kernel -*cpio -sr630.bin diff --git a/mainboards/intel/generic/Makefile b/mainboards/intel/generic/Makefile deleted file mode 100644 index 3e0f833b..00000000 --- a/mainboards/intel/generic/Makefile +++ /dev/null @@ -1,103 +0,0 @@ -MAJOR ?= 5 -STABLE = $(MAJOR).4 -CONFIG ?= $(MAJOR).4.0 -default: build - -build: - echo fetch, uroot, kernel, or image.bin - -image.bin: flashkernel - utk \ - -xzPath /usr/bin/xz \ - ROM.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - remove AMITSE \ - replace_pe32 FullShell flashkernel \ - save image.bin - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -netboot: netbooturoot bzImage - cp linux/arch/x86/boot/bzImage kernel - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -netbooturoot: - u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp github.com/u-root/u-root/cmds/boot/* - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -uroot: - u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/exp/rush github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-$(CONFIG) linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v$(MAJOR).x/linux-$(STABLE).tar.xz - xzcat kernel.xz | tar x - mv linux-$(STABLE) linux -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - @echo If you plan to flash to hardware, - @echo you will need to get a rom imagei - @echo and put it in rom.bin - @echo you can get it via wget, flashrom, whatever. - @echo If you are not targeting hardware, you can - @echo make flashkernel - @echo and run that kernel via qemu - -geturoot: - go get -u github.com/u-root/u-root - diff --git a/mainboards/intel/generic/config-4.14.111 b/mainboards/intel/generic/config-4.14.111 deleted file mode 100644 index e81b7fa3..00000000 --- a/mainboards/intel/generic/config-4.14.111 +++ /dev/null @@ -1,2400 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/intel/generic/config-5.4.0 b/mainboards/intel/generic/config-5.4.0 deleted file mode 100644 index 30428dae..00000000 --- a/mainboards/intel/generic/config-5.4.0 +++ /dev/null @@ -1,2678 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_64BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/intel/generic/config-5.7 b/mainboards/intel/generic/config-5.7 deleted file mode 100644 index 7666e5c1..00000000 --- a/mainboards/intel/generic/config-5.7 +++ /dev/null @@ -1,2718 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/intel/generic/cpu.config b/mainboards/intel/generic/cpu.config deleted file mode 100644 index 4d9926ce..00000000 --- a/mainboards/intel/generic/cpu.config +++ /dev/null @@ -1,2811 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_BLK_CGROUP=y -CONFIG_CGROUP_WRITEBACK=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -# CONFIG_CFS_BANDWIDTH is not set -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -CONFIG_CGROUP_RDMA=y -CONFIG_CGROUP_FREEZER=y -CONFIG_CGROUP_HUGETLB=y -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -CONFIG_CGROUP_DEBUG=y -CONFIG_SOCK_CGROUP_DATA=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_SLUB_MEMCG_SYSFS_ON is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 console=tty0" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_DEV_THROTTLING is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_CGROUP_IOLATENCY is not set -# CONFIG_BLK_CGROUP_IOCOST is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -# CONFIG_NET_SCH_MULTIQ is not set -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_TAPRIO is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -# CONFIG_NET_SCH_MQPRIO is not set -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -# CONFIG_NET_SCH_FQ_CODEL is not set -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_ETS is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -CONFIG_NET_CLS=y -CONFIG_NET_CLS_BASIC=y -# CONFIG_NET_CLS_TCINDEX is not set -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -# CONFIG_NET_CLS_U32 is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -CONFIG_NET_CLS_CGROUP=y -# CONFIG_NET_CLS_BPF is not set -# CONFIG_NET_CLS_FLOWER is not set -# CONFIG_NET_CLS_MATCHALL is not set -# CONFIG_NET_EMATCH is not set -# CONFIG_NET_CLS_ACT is not set -CONFIG_NET_SCH_FIFO=y -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -CONFIG_CGROUP_NET_CLASSID=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -# CONFIG_CONSOLE_TRANSLATIONS is not set -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -CONFIG_TCG_TPM=y -CONFIG_HW_RANDOM_TPM=y -# CONFIG_TCG_TIS is not set -# CONFIG_TCG_TIS_I2C_ATMEL is not set -# CONFIG_TCG_TIS_I2C_INFINEON is not set -# CONFIG_TCG_TIS_I2C_NUVOTON is not set -# CONFIG_TCG_NSC is not set -# CONFIG_TCG_ATMEL is not set -# CONFIG_TCG_INFINEON is not set -# CONFIG_TCG_CRB is not set -# CONFIG_TCG_VTPM_PROXY is not set -# CONFIG_TCG_TIS_ST33ZP24_I2C is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -CONFIG_SECURITYFS=y -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/intel/hw/.gitignore b/mainboards/intel/hw/.gitignore deleted file mode 100644 index 4325a44d..00000000 --- a/mainboards/intel/hw/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -/*.bin -/*.lzma -/*.cpio -/flashkernel -/linux -/bootcmds -/etc diff --git a/mainboards/intel/hw/Makefile b/mainboards/intel/hw/Makefile deleted file mode 100644 index f8e4036d..00000000 --- a/mainboards/intel/hw/Makefile +++ /dev/null @@ -1,335 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make flashpxeboot.bin -# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make flashpxeboot.bin -# cpu board flashrom -w flashpxeboot.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make flashpxeboot.bin -# flashrom -w flashpxeboot.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# flashpxeboot.bin produces a flash image which will pxeboot. -# cpu.bin produces a flash image that starts a cpu daemon. -# -# You can test the flash image kernel with qemu -# make flashtest -# This now includes a uinit as an example of how to write them. -# We also show an example of using the em100 -# -# New to this board class, uniquely, is coreboot support. To use coreboot, -# make coreboot -# To fire up the em100 -# make em100 -# -# you need to supply the coreboot.rom anda corebootem100.map -default: flash - -coreboot: coreboot2x.rom - -coreboot.rom: corebootflashkernel coreboot.rom - - cbfstool coreboot.rom remove -n fallback/payload - cbfstool coreboot.rom add-payload -n fallback/payload -f corebootflashkernel - -coreboot2x.rom: coreboot.rom - cat coreboot.rom coreboot.rom > coreboot2x.rom - -corebootem100: coreboot - em100 -p float --stop --set MX25L25635F --start -Tt -b -M corebootem100.map -d coreboot2x.rom - -em100: flash - em100 -p float --stop --set MX25L25635F -d flashpxeboot.bin --start - -flash: flashpxeboot.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma insert.go - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1 flashkernel \ - save $@ - go run insert.go flashpxeboot.bin flashinitramfs.cpio.lzma 2785280 5603328 - -cpu.bin: dxeremove.bin cpuflashkernel cpu.cpio.lzma insert.go - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 .*Shell cpuflashkernel \ - save $@ - go run insert.go cpu.bin cpu.cpio.lzma 2785280 5603328 - -edk2.bin: dxeremove.bin - echo Note, this inserts the edk2 bds and shell - echo Only flash this image if you have an sf100. - echo It will not be able to boot anything. - utk \ - -xzPath /usr/bin/xz \ - $< \ - insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ - save $@ - -dxeremove.bin: tighten.bin - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - remove Ahci.* \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment AMITSE \ - comment AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - comment Bds \ - comment below_still_unknown \ - remove Button.* \ - comment CrbTpm20Acpi \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - comment FlashDriver_do_not_remove_efi_panics \ - comment FlashDriver_do_not_remove_efi_panics \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - comment leavefornow \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - comment S3Save_do_not_remove_gets_error \ - comment S3Save_do_not_remove_gets_error \ - comment S3Save_do_not_remove_gets_error \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - comment Tcg2Dxe \ - comment TcgDxe \ - comment TcgDxeplatform \ - comment TcgMor \ - comment TcgPlatformSetupPolicy \ - comment TcgSmm \ - remove Tcp.* \ - remove TcpDxe \ - comment testremove \ - comment testremove \ - remove TimestampDxe \ - comment Tpm20PlatformDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - save $@ - chmod a-w $@ - -hap.bin: tighten.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpuflashkernel: cpu.cpio.lzma cpuflash.config - cp cpuflash.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile src/uinit/main.go bootcmds - GOPATH=`go env GOPATH`:$(PWD) u-root -o $@ -build=bb \ - -files bootcmds \ - -files etc \ - -files ~/.ssh/cpu_rsa.pub:key.pub \ - uinit \ - github.com/u-root/u-root/cmds/boot/boot \ - github.com/u-root/u-root/cmds/boot/fbnetboot \ - github.com/u-root/u-root/cmds/boot/fitboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/cp \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/echo \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/mkdir \ - github.com/u-root/u-root/cmds/core/mount \ - github.com/u-root/u-root/cmds/core/unmount \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/exp/fixrsdp \ - github.com/u-root/cpu/cmds/cpud - -cbinitramfs.cpio.lzma: cbinitramfs.cpio - lzma -f -k $< - -cbinitramfs.cpio: Makefile src/uinit/main.go bootcmds - GOPATH=`go env GOPATH`:$(PWD) u-root -o $@ -build=bb \ - uinit \ - github.com/u-root/u-root/cmds/boot/boot \ - github.com/u-root/u-root/cmds/boot/fitboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/cp \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/echo \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/mkdir \ - github.com/u-root/u-root/cmds/core/mount \ - github.com/u-root/u-root/cmds/core/unmount \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/exp/fixrsdp \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -corebootflashkernel: corebootflash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - touch bootcmds - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.8 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unzip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/intel/hw/corebootflash.config b/mainboards/intel/hw/corebootflash.config deleted file mode 100644 index 2661d6d7..00000000 --- a/mainboards/intel/hw/corebootflash.config +++ /dev/null @@ -1,2590 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -CONFIG_X86_CHECK_BIOS_CORRUPTION=y -CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y -CONFIG_X86_RESERVE_LOW=640 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000 acpi_enforce_resources=lax" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_FAN is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -# CONFIG_ACPI_THERMAL is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -CONFIG_ACPI_CONFIGFS=y -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -# CONFIG_CPU_FREQ_STAT is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -CONFIG_EFI_FAKE_MEMMAP=y -CONFIG_EFI_MAX_FAKE_MEM=128 -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -CONFIG_EEPROM_EE1004=y -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_BUSLOGIC is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -# CONFIG_MDIO_DEVICE is not set -# CONFIG_PHYLIB is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -CONFIG_I2C_ALI1535=y -CONFIG_I2C_ALI1563=y -CONFIG_I2C_ALI15X3=y -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -CONFIG_I2C_I801=y -CONFIG_I2C_ISCH=y -CONFIG_I2C_ISMT=y -CONFIG_I2C_PIIX4=y -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -CONFIG_I2C_SCMI=y - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_XILINX=y - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -# CONFIG_I2C_DEBUG_ALGO is not set -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -CONFIG_LPC_SCH=y -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/intel/hw/cpu.config b/mainboards/intel/hw/cpu.config deleted file mode 100644 index d83ec814..00000000 --- a/mainboards/intel/hw/cpu.config +++ /dev/null @@ -1,2479 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000 acpi_enforce_resources=lax" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -CONFIG_ACPI_CONFIGFS=y -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -CONFIG_EFI_FAKE_MEMMAP=y -CONFIG_EFI_MAX_FAKE_MEM=8 -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -# CONFIG_PACKET is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -CONFIG_EEPROM_EE1004=y -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -# CONFIG_MDIO_DEVICE is not set -# CONFIG_PHYLIB is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -CONFIG_I2C_ALI1535=y -CONFIG_I2C_ALI1563=y -CONFIG_I2C_ALI15X3=y -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -CONFIG_I2C_I801=y -CONFIG_I2C_ISCH=y -CONFIG_I2C_ISMT=y -CONFIG_I2C_PIIX4=y -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -CONFIG_I2C_SCMI=y - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_XILINX=y - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -# CONFIG_I2C_DEBUG_ALGO is not set -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -CONFIG_LPC_SCH=y -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_NVME_CORE=y -CONFIG_BLK_DEV_NVME=y diff --git a/mainboards/intel/hw/cpuflash.config b/mainboards/intel/hw/cpuflash.config deleted file mode 100644 index 610eed27..00000000 --- a/mainboards/intel/hw/cpuflash.config +++ /dev/null @@ -1,2480 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000 acpi_enforce_resources=lax" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -CONFIG_ACPI_CONFIGFS=y -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -CONFIG_EFI_FAKE_MEMMAP=y -CONFIG_EFI_MAX_FAKE_MEM=8 -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -# CONFIG_PACKET is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -CONFIG_NVME_CORE=y -CONFIG_BLK_DEV_NVME=y -# CONFIG_NVME_MULTIPATH is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TCP is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -CONFIG_EEPROM_EE1004=y -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_BUSLOGIC is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -# CONFIG_MDIO_DEVICE is not set -# CONFIG_PHYLIB is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -CONFIG_I2C_ALI1535=y -CONFIG_I2C_ALI1563=y -CONFIG_I2C_ALI15X3=y -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -CONFIG_I2C_I801=y -CONFIG_I2C_ISCH=y -CONFIG_I2C_ISMT=y -CONFIG_I2C_PIIX4=y -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -CONFIG_I2C_SCMI=y - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_XILINX=y - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -# CONFIG_I2C_DEBUG_ALGO is not set -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -CONFIG_LPC_SCH=y -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/intel/hw/etc/README b/mainboards/intel/hw/etc/README deleted file mode 100644 index f94ef5b0..00000000 --- a/mainboards/intel/hw/etc/README +++ /dev/null @@ -1,3 +0,0 @@ -Add files to this directory which you wish included in -the ROM image. Such files might include utilities -such as Intel's NIC utilities. diff --git a/mainboards/intel/hw/flash.config b/mainboards/intel/hw/flash.config deleted file mode 100644 index 19ffc2cd..00000000 --- a/mainboards/intel/hw/flash.config +++ /dev/null @@ -1,2721 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -CONFIG_X86_CHECK_BIOS_CORRUPTION=y -CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y -CONFIG_X86_RESERVE_LOW=640 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000 acpi_enforce_resources=lax" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_FAN is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -# CONFIG_ACPI_THERMAL is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -CONFIG_ACPI_CONFIGFS=y -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -# CONFIG_CPU_FREQ_STAT is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -CONFIG_EFI_FAKE_MEMMAP=y -CONFIG_EFI_MAX_FAKE_MEM=128 -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -CONFIG_EEPROM_EE1004=y -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_BUSLOGIC is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -# CONFIG_MDIO_DEVICE is not set -# CONFIG_PHYLIB is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -CONFIG_I2C_ALI1535=y -CONFIG_I2C_ALI1563=y -CONFIG_I2C_ALI15X3=y -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -CONFIG_I2C_I801=y -CONFIG_I2C_ISCH=y -CONFIG_I2C_ISMT=y -CONFIG_I2C_PIIX4=y -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -CONFIG_I2C_SCMI=y - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_XILINX=y - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -# CONFIG_I2C_DEBUG_ALGO is not set -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -CONFIG_LPC_SCH=y -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -# CONFIG_USB_XHCI_PLATFORM is not set -# CONFIG_USB_EHCI_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -# CONFIG_USB_UAS is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/intel/hw/insert.go b/mainboards/intel/hw/insert.go deleted file mode 100644 index 2a4fab4f..00000000 --- a/mainboards/intel/hw/insert.go +++ /dev/null @@ -1,57 +0,0 @@ -// insert an initramfs, checking sizes. - -package main - -import ( - "io/ioutil" - "log" - "os" - "strconv" -) - -func main() { - // Arguments are simple: - // image file - // initramfs file - // offset in target - // size limit - if len(os.Args) != 5 { - log.Fatalf("Usage: %s image initramfs offset max-allowed-initramfs-size", os.Args[0]) - } - - image, initramfs, offset, size := os.Args[1], os.Args[2], os.Args[3], os.Args[4] - - img, err := ioutil.ReadFile(image) - if err != nil { - log.Fatal(err) - } - ramfs, err := ioutil.ReadFile(initramfs) - if err != nil { - log.Fatal(err) - } - off, err := strconv.ParseUint(offset, 0, 24) - if err != nil { - log.Fatal(err) - } - sz, err := strconv.ParseUint(size, 0, 24) - if err != nil { - log.Fatal(err) - } - - if uint64(len(ramfs)) > sz { - log.Fatalf("Size of %q (%d) > allowed size (%d)", initramfs, len(ramfs), sz) - } - if off > uint64(len(img)) { - log.Fatal("Off (%d) is > image size (%d)", off, len(img)) - } - if off+sz > uint64(len(img)) { - log.Fatal("Off (%d) is > image size (%d)", off, len(img)) - } - - copy(img[off:], ramfs[:]) - log.Printf("Inserted %q, %d bytes actual size, with max allowed size of %d, at offset %d bytes, into %q, %d bytes", - initramfs, len(ramfs), sz, off, image, len(img)) - if err := ioutil.WriteFile(image, img, 0666); err != nil { - log.Fatal(err) - } -} diff --git a/mainboards/intel/hw/src/uinit/main.go b/mainboards/intel/hw/src/uinit/main.go deleted file mode 100644 index f83628b3..00000000 --- a/mainboards/intel/hw/src/uinit/main.go +++ /dev/null @@ -1,79 +0,0 @@ -// Copyright 2020 the u-root Authors. All rights reserved -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// This is an example uinit for a board which has special requirements. -// First, it fixes the RSDP so that it will be found by whatever -// kernel comes next. Next, it mounts in this case (e.g.) /dev/sda5. -// Finally, it reads /bootcmds, a file which contains 0 or more -// commands, one per line. -// debug prints are on by default but can be turned off via -// -d=false -// The location of the command file is controlled by -cmd switch. -package main - -import ( - "flag" - "io/ioutil" - "log" - "os" - "os/exec" - "strings" - "time" - - "github.com/u-root/u-root/pkg/shlex" -) - -var ( - bootcmd = flag.String("bootcmd", "/bootcmds", "File containing boot command line") - debug = flag.Bool("d", true, "Print debug statement") - v = func(string, ...interface{}) {} -) - -func main() { - flag.Parse() - if *debug { - v = log.Printf - } - var bootcmds = []*exec.Cmd{ - exec.Command("fixrsdp"), - exec.Command("mount", "/dev/sda6", "/mnt"), - } - - for _, c := range bootcmds { - v("Run %v", c) - c.Stdout, c.Stderr = os.Stdout, os.Stderr - if err := c.Run(); err != nil { - log.Printf("cmd '%q' fails: %v", c, err) - } - } - - log.Print("-----> Hit ^C within 10 seconds to stop booting") - time.Sleep(10 * time.Second) - if cmds, err := ioutil.ReadFile(*bootcmd); err != nil { - log.Printf("Can not open %q: %v; will not attempt to boot", *bootcmd, err) - } else { - bootcmds = []*exec.Cmd{} - lines := strings.Split(string(cmds), "\n") - for _, l := range lines { - if len(l) == 0 { - break - } - f := shlex.Argv(l) - var args []string - if len(f) > 1 { - args = f[1:] - } - v("Add command %q %q", f[0], args) - bootcmds = append(bootcmds, exec.Command(f[0], args...)) - } - } - for _, c := range bootcmds { - v("Run %v", c) - c.Stdout, c.Stderr = os.Stdout, os.Stderr - if err := c.Run(); err != nil { - log.Fatalf("cmd '%q' fails: %v", c, err) - } - } - -} diff --git a/mainboards/intel/minplatform/Makefile b/mainboards/intel/minplatform/Makefile deleted file mode 100644 index 04d2bdbc..00000000 --- a/mainboards/intel/minplatform/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -default: build - -build: - echo fetch, flashkernel, testflashkernel and housekeeping - -flashkernel: linuxboot-linux.tiny.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - cp flashinitramfs.cpio.lzma linux/ - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - go run github.com/u-root/u-root -o $@ -build=bb \ - -uinitcmd=/bbin/console \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - github.com/u-root/u-root/cmds/exp/console \ - -fetch: getkernel geturoot getfiano - -getkernel: - rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -testflashkernel: flashkernel - echo ^C will exit qemu! be careful! - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma -monitor /dev/null - -housekeeping: - rm -rf flashinitramfs.cpio \ - flashinitramfs.cpio.lzma \ - flashkernel \ - diff --git a/mainboards/intel/minplatform/linuxboot-linux.tiny.config b/mainboards/intel/minplatform/linuxboot-linux.tiny.config deleted file mode 100644 index 32e79ac9..00000000 --- a/mainboards/intel/minplatform/linuxboot-linux.tiny.config +++ /dev/null @@ -1,1922 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="flashinitramfs.cpio.lzma" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 diff --git a/mainboards/intel/s2600/Makefile b/mainboards/intel/s2600/Makefile deleted file mode 100644 index 97db5ffe..00000000 --- a/mainboards/intel/s2600/Makefile +++ /dev/null @@ -1,242 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i ../../class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i ../../class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i ../../class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i ../../class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -default: sshdkernel flash cpukernel - -flash: tiny.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -tiny.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell flashkernel \ - save $@ - dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -dxeremove.bin: hap.bin - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - remove Ahci.* \ - remove AMITSE \ - remove AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - remove Bds \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - comment S3Save_do_not_remove_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment CrbTpm20Acpi \ - comment TcgSmm \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - save $@ - chmod a-w $@ - -hap.bin: image.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma netbootkernel.config - cp netbootkernel.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -# at the moment, the kernel used for the cpu command and the sshdkernel -# are the same. -cpukernel: sshdkernel - cp sshdkernel $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - go run github.com/u-root/u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - go run github.com/u-root/u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files ../../class_key.pub:authorized_keys \ - -files ../../classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: linuxboot-linux.tiny.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrd=0xff968000,%s"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/intel/s2600/flashkernel.config b/mainboards/intel/s2600/flashkernel.config deleted file mode 100644 index f0d37eab..00000000 --- a/mainboards/intel/s2600/flashkernel.config +++ /dev/null @@ -1,1922 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y diff --git a/mainboards/intel/s2600/linuxboot-linux.tiny.config b/mainboards/intel/s2600/linuxboot-linux.tiny.config deleted file mode 100644 index f0d37eab..00000000 --- a/mainboards/intel/s2600/linuxboot-linux.tiny.config +++ /dev/null @@ -1,1922 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y diff --git a/mainboards/intel/s2600/netbootkernel.config b/mainboards/intel/s2600/netbootkernel.config deleted file mode 100644 index 70fae893..00000000 --- a/mainboards/intel/s2600/netbootkernel.config +++ /dev/null @@ -1,2639 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.6.0-rc7 Kernel Configuration -# - -# -# Compiler: gcc (Debian 9.2.1-19) 9.2.1 20191109 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=90201 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -# CONFIG_ETHTOOL_NETLINK is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/lenovo/hr630/.gitignore b/mainboards/lenovo/hr630/.gitignore deleted file mode 100644 index a69180a2..00000000 --- a/mainboards/lenovo/hr630/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -image.bin -initramfs.linux_amd64.cpio -initramfs.linux_amd64.cpio.lzma -kernel -kernel.xz -linux -sr630.bin diff --git a/mainboards/lenovo/hr630/Makefile b/mainboards/lenovo/hr630/Makefile deleted file mode 100644 index b3c0d14d..00000000 --- a/mainboards/lenovo/hr630/Makefile +++ /dev/null @@ -1,413 +0,0 @@ -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel - utk \ - -xzPath /usr/bin/xz \ - sr630.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - remove AMITSE \ - replace_pe32 FullShell flashkernel \ - save image.bin - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -readrom: - echo note: for this to work you need to plug in power - echo also .... flashrom will not work you need sf100 on windows - sudo flashrom -p dediprog -r sr630.bin - -writerom: image.bin - sudo flashrom -p dediprog -w sr630.bin - -uroot: - go run github.com/u-root/u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/exp/rush github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-4.14.111 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz - xzcat kernel.xz | tar x - mv linux-4.14.111 linux -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to sr630.bin -geturoot: - go get -u github.com/u-root/u-root - -# everything from here below was part of an experiment and can be ignored. -experiment: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - ForthUTK sr630.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - ForthUTK 98.splat fv ./DXECLEANER clean - -d4: - ForthUTK RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/cmds/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - ForthUTK remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/xcmds/pox github.com/u-root/u-root/cmds/scp github.com/u-root/u-root/cmds/cpio - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - utk sr630.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore diff --git a/mainboards/lenovo/hr630/config-4.14.111 b/mainboards/lenovo/hr630/config-4.14.111 deleted file mode 100644 index 668213a2..00000000 --- a/mainboards/lenovo/hr630/config-4.14.111 +++ /dev/null @@ -1,2385 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/lenovo/sr630/Makefile b/mainboards/lenovo/sr630/Makefile deleted file mode 100644 index b3c0d14d..00000000 --- a/mainboards/lenovo/sr630/Makefile +++ /dev/null @@ -1,413 +0,0 @@ -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel - utk \ - -xzPath /usr/bin/xz \ - sr630.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - remove AMITSE \ - replace_pe32 FullShell flashkernel \ - save image.bin - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -readrom: - echo note: for this to work you need to plug in power - echo also .... flashrom will not work you need sf100 on windows - sudo flashrom -p dediprog -r sr630.bin - -writerom: image.bin - sudo flashrom -p dediprog -w sr630.bin - -uroot: - go run github.com/u-root/u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/exp/rush github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-4.14.111 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz - xzcat kernel.xz | tar x - mv linux-4.14.111 linux -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to sr630.bin -geturoot: - go get -u github.com/u-root/u-root - -# everything from here below was part of an experiment and can be ignored. -experiment: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - ForthUTK sr630.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - ForthUTK 98.splat fv ./DXECLEANER clean - -d4: - ForthUTK RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/cmds/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - ForthUTK remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/xcmds/pox github.com/u-root/u-root/cmds/scp github.com/u-root/u-root/cmds/cpio - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - utk sr630.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore diff --git a/mainboards/lenovo/sr630/config-4.14.111 b/mainboards/lenovo/sr630/config-4.14.111 deleted file mode 100644 index a0c4f7e8..00000000 --- a/mainboards/lenovo/sr630/config-4.14.111 +++ /dev/null @@ -1,1654 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_FHANDLE is not set -# CONFIG_USELIB is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# CONFIG_TASKS_RCU is not set -# CONFIG_RCU_STALL_COMMON is not set -# CONFIG_RCU_NEED_SEGCBLIST is not set -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../initramfs.linux_amd64.cpio.lzma" -CONFIG_RD_GZIP=n -CONFIG_RD_BZIP2=n -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=n -CONFIG_RD_LZ4=n -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_SYSCTL_SYSCALL is not set -# CONFIG_POSIX_TIMERS is not set -# CONFIG_KALLSYMS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -# CONFIG_MEMBARRIER is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -# CONFIG_PROFILING is not set -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -CONFIG_NR_CPUS=1 -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -CONFIG_X86_VSYSCALL_EMULATION=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -CONFIG_ARCH_HAS_ZONE_DEVICE=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -# CONFIG_ARCH_RANDOM is not set -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -# CONFIG_SCHED_HRTICK is not set -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -# CONFIG_RELOCATABLE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_CMDLINE_BOOL is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_X86_PM_TIMER=y -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_PCIEPORTBUS is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -CONFIG_HT_IRQ=y -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y - -# -# DesignWare PCI Core Support -# - -# -# PCI host controller drivers -# - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -# CONFIG_NET is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set -# CONFIG_FW_LOADER is not set -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# - -# -# Altera FPGA firmware download module -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_SCSI_DMA is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -CONFIG_SERIAL_8250_MID=y -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_REGULATOR is not set -CONFIG_RC_CORE=y -CONFIG_RC_MAP=y -CONFIG_RC_DECODERS=y -# CONFIG_LIRC is not set -CONFIG_IR_NEC_DECODER=y -CONFIG_IR_RC5_DECODER=y -CONFIG_IR_RC6_DECODER=y -CONFIG_IR_JVC_DECODER=y -CONFIG_IR_SONY_DECODER=y -CONFIG_IR_SANYO_DECODER=y -CONFIG_IR_SHARP_DECODER=y -CONFIG_IR_MCE_KBD_DECODER=y -CONFIG_IR_XMP_DECODER=y -# CONFIG_RC_DEVICES is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_GOOGLE_FIRMWARE is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_FS_POSIX_ACL is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -# CONFIG_KERNFS is not set -# CONFIG_SYSFS is not set -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_WARN_DEPRECATED is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_DEBUG_FS is not set -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_DOUBLEFAULT is not set -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_CPA_DEBUG is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -# CONFIG_SG_SPLIT is not set -# CONFIG_SG_POOL is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/lenovo/thinkpad/Makefile b/mainboards/lenovo/thinkpad/Makefile deleted file mode 100644 index 4995d64c..00000000 --- a/mainboards/lenovo/thinkpad/Makefile +++ /dev/null @@ -1,82 +0,0 @@ -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel coreboot.bin - cp coreboot.bin image.bin - chmod +w image.bin - cbfstool image.bin print - cbfstool image.bin remove -n img/nerf - cbfstool image.bin remove -n genroms/pxe.rom - cbfstool image.bin add-payload -n img/nerf -f flashkernel - cbfstool image.bin print -qemu: flashkernel - sudo /usr/bin/qemu-system-x86_64 -kernel flashkernel \ - -cpu max \ - -s \ - -m 1024m \ - -machine q35 \ - -object rng-random,filename=/dev/urandom,id=rng0 \ - -device virtio-rng-pci,rng=rng0 \ - -device e1000,netdev=n1 \ - -netdev user,id=n1,hostfwd=tcp:127.0.0.1:23-:2222,net=192.168.1.0/24,host=192.168.1.1 \ - -serial stdio \ - -append earlyprintk=ttyS0,115200\ console=ttyS0 \ - -monitor /dev/null \ - - -# add the following line to qemu if you want to snoop packets. - -object filter-dump,id=f1,netdev=n1,file=/tmp/vm0.pcap \ - - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -netbootkernel: netbooturoot bzImage - cp linux/arch/x86/boot/bzImage kernel - -readrom: - sudo flashrom -p internal -r coreboot.bin - -writerom: image.bin - sudo flashrom -p internal -w image.bin - -netbooturoot: - go run github.com/u-root/u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp github.com/u-root/u-root/cmds/boot/* - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -uroot: - go run github.com/u-root/u-root -initcmd=/bbin/cpu -build=bb -files ~/.ssh/cpu_rsa.pub:key.pub \ - all \ - github.com/u-root/cpu/cmds/cpu - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-4.14.111 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz - xzcat kernel.xz | tar x - mv linux-4.14.111 linux -getrom: - echo you create the flashkernel - echo on the APU2: flashrom -r coreboot.bin -p internal - echo copy that file here and for safety: - echo chmod a-w coreboot.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english diff --git a/mainboards/lenovo/thinkpad/config-4.14.111 b/mainboards/lenovo/thinkpad/config-4.14.111 deleted file mode 100644 index d0c546b7..00000000 --- a/mainboards/lenovo/thinkpad/config-4.14.111 +++ /dev/null @@ -1,2435 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_FHANDLE is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_FREEZER=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -CONFIG_PM_ADVANCED_DEBUG=y -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -CONFIG_PCIE_PME=y -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -CONFIG_MTD=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -# CONFIG_MTD_AR7_PARTS is not set - -# -# Partition parsers -# - -# -# User Modules And Translation Layers -# -# CONFIG_MTD_BLOCK is not set -# CONFIG_MTD_BLOCK_RO is not set -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_PARTITIONED_MASTER is not set - -# -# RAM/ROM/Flash chip drivers -# -CONFIG_MTD_CFI=y -CONFIG_MTD_JEDECPROBE=y -CONFIG_MTD_GEN_PROBE=y -CONFIG_MTD_CFI_ADV_OPTIONS=y -CONFIG_MTD_CFI_NOSWAP=y -# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set -# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set -CONFIG_MTD_CFI_GEOMETRY=y -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_MAP_BANK_WIDTH_8=y -CONFIG_MTD_MAP_BANK_WIDTH_16=y -CONFIG_MTD_MAP_BANK_WIDTH_32=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -CONFIG_MTD_CFI_I4=y -CONFIG_MTD_CFI_I8=y -CONFIG_MTD_OTP=y -CONFIG_MTD_CFI_INTELEXT=y -CONFIG_MTD_CFI_AMDSTD=y -CONFIG_MTD_CFI_STAA=y -CONFIG_MTD_CFI_UTIL=y -CONFIG_MTD_RAM=y -CONFIG_MTD_ROM=y -CONFIG_MTD_ABSENT=y - -# -# Mapping drivers for chip access -# -CONFIG_MTD_COMPLEX_MAPPINGS=y -# CONFIG_MTD_PHYSMAP is not set -# CONFIG_MTD_SBC_GXX is not set -CONFIG_MTD_AMD76XROM=y -CONFIG_MTD_ICHXROM=y -CONFIG_MTD_ESB2ROM=y -# CONFIG_MTD_CK804XROM is not set -CONFIG_MTD_SCB2_FLASH=y -# CONFIG_MTD_NETtel is not set -# CONFIG_MTD_L440GX is not set -# CONFIG_MTD_PCI is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# CONFIG_MTD_LATCH_ADDR is not set - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_M25P80 is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# CONFIG_MTD_NAND is not set -# CONFIG_MTD_ONENAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -CONFIG_MTD_SPI_NOR=y -# CONFIG_MTD_MT81xx_NOR is not set -# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_TI_DAC7512 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# CONFIG_SCSI_DMA is not set -# CONFIG_SCSI_NETLINK is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_ENC28J60 is not set -# CONFIG_ENCX24J600 is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -# CONFIG_CONSOLE_TRANSLATIONS is not set -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_INTEL is not set -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_VIA is not set -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -# CONFIG_ACPI_I2C_OPREGION is not set -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_PXA2XX_PCI is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -# CONFIG_LEDS_CLASS is not set - -# -# LED drivers -# - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# - -# -# LED Triggers -# -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -# CONFIG_DMIID is not set -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -# CONFIG_MSDOS_FS is not set -# CONFIG_VFAT_FS is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_MANAGER2 is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_GF128MUL is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -# CONFIG_CRYPTO_HW is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -# CONFIG_XZ_DEC_BCJ is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -# CONFIG_SG_SPLIT is not set -# CONFIG_SG_POOL is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/marvel/macchiatobin/.gitignore b/mainboards/marvel/macchiatobin/.gitignore deleted file mode 100644 index 0f176acf..00000000 --- a/mainboards/marvel/macchiatobin/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -/linux - -*.cpio -*.cpio.xz -tfa -/binaries-marvell/ -/mv-ddr-marvell/ diff --git a/mainboards/marvel/macchiatobin/Makefile b/mainboards/marvel/macchiatobin/Makefile deleted file mode 100644 index 60d75da4..00000000 --- a/mainboards/marvel/macchiatobin/Makefile +++ /dev/null @@ -1,175 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i ../../class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i ../../class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i ../../class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i ../../class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - - -MARVELL_GIT?=https://github.com/MarvellEmbeddedProcessors -TOOLCHAIN?=aarch64-linux-gnu- - -default: flash-image.bin - -u-root: - go install github.com/u-root/u-root - @echo Make sure $(GOPATH)/bin is in your PATH - @echo if GOPATH is empty, then put ~/go/bin in your PATH - -todo: sshdkernel flash cpukernel - -flash-image.bin: flashkernel sd - -sd: - (cd tfa && make \ - CROSS_COMPILE=$(TOOLCHAIN) \ - Arch=arm64 \ - SCP_BL2=../binaries-marvell/mrvl_scp_bl2_8040.img \ - BL33=../linux/arch/arm64/boot/Image.gz \ - BL33_DTB=../linux/arch/arm64/boot/dts/marvell/armada-8040-mcbin.dtb \ - USE_COHERENT_MEM=0 \ - ARM_LINUX_KERNEL_AS_BL33=1 \ - MV_DDR_PATH=../mv-ddr-marvell \ - PLAT=a80x0_mcbin \ - all fip) - echo build result is tfa/build/a80x0_mcbin/release/flash-image.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, apt (for crossbuild) or image.bin - -tiny.bin: flashkernel flashinitramfs.cpio.xz - -sshdkernel: sshd.cpio.xz netbootkernel.config - cp netbootkernel.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -# at the moment, the kernel used for the cpu command and the sshdkernel -# are the same. -cpukernel: sshdkernel - cp sshdkernel $@ - -writerom: flash-image.bin - @echo Use this command. It will not be run from this Makefile - @echo dd if=flash-image.bin of=/dev/null skip=1 - -flashinitramfs.cpio.xz: flashinitramfs.cpio - xz --check=crc32 -f -k $< - -flashinitramfs.cpio: u-root Makefile - GOARCH=arm64 u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.xz: u-root Makefile - GOARCH=arm64 u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - xz --check=crc32 -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.xz: u-root Makefile - GOARCH=arm64 u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files ../../class_key.pub:authorized_keys \ - -files ../../classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - xz --check=crc32 -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: config-5.6.3 flashinitramfs.cpio.xz - cp $< linux/.config - (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) - -testflashkernel: flashkernel - qemu-system-arm64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.xz - -# These stanzas fetch code. -fetch: getkernel geturoot gettfa fetchblobs - -gettfa: - rm -rf tfa - echo NOT THIS ONE git clone https://github.com/fozog/arm-trusted-firmware.git tfa - git clone --branch linuxboot4mcbin https://github.com/fozog/arm-trusted-firmware.git tfa - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.6 --single-branch https://github.com/torvalds/linux - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -fetchblobs: - rm -rf mv-ddr-marvell binaries-marvell - git clone --branch mv_ddr-armada-atf-mainline $(MARVELL_GIT)/mv-ddr-marvell.git - git clone --branch binaries-marvell-armada-17.10 $(MARVELL_GIT)/binaries-marvell - -apt: - sudo apt install gcc-aarch64-linux-gnu - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/marvel/macchiatobin/config-5.6.3 b/mainboards/marvel/macchiatobin/config-5.6.3 deleted file mode 100644 index bc8f8100..00000000 --- a/mainboards/marvel/macchiatobin/config-5.6.3 +++ /dev/null @@ -1,2729 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm64 5.6.0 Kernel Configuration -# - -# -# Compiler: aarch64-linux-gnu-gcc (Linaro GCC 7.5-2019.12) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_USELIB is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_IRQ_MSI_IOMMU=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -CONFIG_RCU_EXPERT=y -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_FANOUT=64 -CONFIG_RCU_FANOUT_LEAF=16 -# CONFIG_RCU_FAST_NO_HZ is not set -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_NAMESPACES is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.xz" -CONFIG_INITRAMFS_FORCE=y -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -# CONFIG_SGETMASK_SYSCALL is not set -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -# CONFIG_PERF_EVENTS is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -CONFIG_SLUB_DEBUG=y -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_ARM64=y -CONFIG_64BIT=y -CONFIG_MMU=y -CONFIG_ARM64_PAGE_SHIFT=12 -CONFIG_ARM64_CONT_SHIFT=4 -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=33 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ZONE_DMA=y -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_SMP=y -CONFIG_KERNEL_MODE_NEON=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_ARCH_PROC_KCORE_TEXT=y - -# -# Platform selection -# -# CONFIG_ARCH_ACTIONS is not set -# CONFIG_ARCH_AGILEX is not set -# CONFIG_ARCH_SUNXI is not set -# CONFIG_ARCH_ALPINE is not set -# CONFIG_ARCH_BCM2835 is not set -# CONFIG_ARCH_BCM_IPROC is not set -# CONFIG_ARCH_BERLIN is not set -# CONFIG_ARCH_BITMAIN is not set -# CONFIG_ARCH_BRCMSTB is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_K3 is not set -# CONFIG_ARCH_LAYERSCAPE is not set -# CONFIG_ARCH_LG1K is not set -# CONFIG_ARCH_HISI is not set -# CONFIG_ARCH_MEDIATEK is not set -# CONFIG_ARCH_MESON is not set -CONFIG_ARCH_MVEBU=y -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_QCOM is not set -# CONFIG_ARCH_REALTEK is not set -# CONFIG_ARCH_RENESAS is not set -# CONFIG_ARCH_ROCKCHIP is not set -# CONFIG_ARCH_S32 is not set -# CONFIG_ARCH_SEATTLE is not set -# CONFIG_ARCH_STRATIX10 is not set -# CONFIG_ARCH_SYNQUACER is not set -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_SPRD is not set -# CONFIG_ARCH_THUNDER is not set -# CONFIG_ARCH_THUNDER2 is not set -# CONFIG_ARCH_UNIPHIER is not set -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_XGENE is not set -# CONFIG_ARCH_ZX is not set -# CONFIG_ARCH_ZYNQMP is not set -# end of Platform selection - -# -# Kernel Features -# - -# -# ARM errata workarounds via the alternatives framework -# -CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y -CONFIG_ARM64_ERRATUM_826319=y -CONFIG_ARM64_ERRATUM_827319=y -CONFIG_ARM64_ERRATUM_824069=y -CONFIG_ARM64_ERRATUM_819472=y -CONFIG_ARM64_ERRATUM_832075=y -CONFIG_ARM64_ERRATUM_843419=y -CONFIG_ARM64_ERRATUM_1024718=y -CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT_VHE=y -CONFIG_ARM64_ERRATUM_1165522=y -CONFIG_ARM64_ERRATUM_1530923=y -CONFIG_ARM64_ERRATUM_1286807=y -CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT_NVHE=y -CONFIG_ARM64_ERRATUM_1319367=y -CONFIG_ARM64_ERRATUM_1463225=y -CONFIG_ARM64_ERRATUM_1542419=y -CONFIG_CAVIUM_ERRATUM_22375=y -CONFIG_CAVIUM_ERRATUM_23154=y -CONFIG_CAVIUM_ERRATUM_27456=y -CONFIG_CAVIUM_ERRATUM_30115=y -CONFIG_CAVIUM_TX2_ERRATUM_219=y -CONFIG_QCOM_FALKOR_ERRATUM_1003=y -CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y -CONFIG_QCOM_FALKOR_ERRATUM_1009=y -CONFIG_QCOM_QDF2400_ERRATUM_0065=y -CONFIG_SOCIONEXT_SYNQUACER_PREITS=y -CONFIG_HISILICON_ERRATUM_161600802=y -CONFIG_QCOM_FALKOR_ERRATUM_E1041=y -CONFIG_FUJITSU_ERRATUM_010001=y -# end of ARM errata workarounds via the alternatives framework - -CONFIG_ARM64_4K_PAGES=y -# CONFIG_ARM64_16K_PAGES is not set -# CONFIG_ARM64_64K_PAGES is not set -# CONFIG_ARM64_VA_BITS_39 is not set -CONFIG_ARM64_VA_BITS_48=y -CONFIG_ARM64_VA_BITS=48 -CONFIG_ARM64_PA_BITS_48=y -CONFIG_ARM64_PA_BITS=48 -# CONFIG_CPU_BIG_ENDIAN is not set -CONFIG_CPU_LITTLE_ENDIAN=y -CONFIG_SCHED_MC=y -# CONFIG_SCHED_SMT is not set -CONFIG_NR_CPUS=4 -CONFIG_HOTPLUG_CPU=y -# CONFIG_NUMA is not set -CONFIG_HOLES_IN_ZONE=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_HAVE_ARCH_PFN_VALID=y -CONFIG_SYS_SUPPORTS_HUGETLBFS=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_SECCOMP is not set -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -# CONFIG_XEN is not set -CONFIG_FORCE_MAX_ZONEORDER=11 -CONFIG_UNMAP_KERNEL_AT_EL0=y -CONFIG_HARDEN_BRANCH_PREDICTOR=y -CONFIG_HARDEN_EL2_VECTORS=y -CONFIG_ARM64_SSBD=y -CONFIG_RODATA_FULL_DEFAULT_ENABLED=y -# CONFIG_ARM64_SW_TTBR0_PAN is not set -CONFIG_ARM64_TAGGED_ADDR_ABI=y -# CONFIG_COMPAT is not set - -# -# ARMv8.1 architectural features -# -CONFIG_ARM64_HW_AFDBM=y -CONFIG_ARM64_PAN=y -CONFIG_ARM64_LSE_ATOMICS=y -CONFIG_ARM64_USE_LSE_ATOMICS=y -CONFIG_ARM64_VHE=y -# end of ARMv8.1 architectural features - -# -# ARMv8.2 architectural features -# -CONFIG_ARM64_UAO=y -# CONFIG_ARM64_PMEM is not set -CONFIG_ARM64_RAS_EXTN=y -CONFIG_ARM64_CNP=y -# end of ARMv8.2 architectural features - -# -# ARMv8.3 architectural features -# -CONFIG_ARM64_PTR_AUTH=y -# end of ARMv8.3 architectural features - -# -# ARMv8.5 architectural features -# -CONFIG_ARM64_E0PD=y -CONFIG_ARCH_RANDOM=y -# end of ARMv8.5 architectural features - -CONFIG_ARM64_SVE=y -CONFIG_ARM64_MODULE_PLTS=y -# CONFIG_ARM64_PSEUDO_NMI is not set -# CONFIG_RANDOMIZE_BASE is not set -# end of Kernel Features - -# -# Boot options -# -CONFIG_CMDLINE="console=ttyS0,115200 rootwait root=/dev/mmcblk0p2 rw" -CONFIG_CMDLINE_FORCE=y -CONFIG_EFI_STUB=y -CONFIG_EFI=y -CONFIG_DMI=y -# end of Boot options - -# -# Power management options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -# CONFIG_HIBERNATION is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_CPU_PM=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -# end of Power management options - -# -# CPU Power Management -# - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling -# end of CPU Power Management - -# -# Firmware Drivers -# -CONFIG_ARM_SDE_INTERFACE=y -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_HAVE_ARM_SMCCC=y -CONFIG_ARM_PSCI_FW=y -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_PARAMS_FROM_FDT=y -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_ARMSTUB=y -CONFIG_EFI_ARMSTUB_DTB_LOADER=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_ARCH_SUPPORTS_ACPI=y -# CONFIG_ACPI is not set -# CONFIG_VIRTUALIZATION is not set -# CONFIG_ARM64_CRYPTO is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -# CONFIG_KPROBES is not set -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_MMU_GATHER_TABLE_FREE=y -CONFIG_MMU_GATHER_RCU_TABLE_FREE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -# CONFIG_UNUSED_SYMBOLS is not set -CONFIG_TRIM_UNUSED_KSYMS=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y -CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y -CONFIG_ARCH_INLINE_SPIN_LOCK=y -CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y -CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y -CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y -CONFIG_ARCH_INLINE_SPIN_UNLOCK=y -CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y -CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y -CONFIG_ARCH_INLINE_READ_LOCK=y -CONFIG_ARCH_INLINE_READ_LOCK_BH=y -CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y -CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y -CONFIG_ARCH_INLINE_READ_UNLOCK=y -CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y -CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y -CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y -CONFIG_ARCH_INLINE_WRITE_LOCK=y -CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y -CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y -CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y -CONFIG_ARCH_INLINE_WRITE_UNLOCK=y -CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y -CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y -CONFIG_INLINE_SPIN_TRYLOCK=y -CONFIG_INLINE_SPIN_TRYLOCK_BH=y -CONFIG_INLINE_SPIN_LOCK=y -CONFIG_INLINE_SPIN_LOCK_BH=y -CONFIG_INLINE_SPIN_LOCK_IRQ=y -CONFIG_INLINE_SPIN_LOCK_IRQSAVE=y -CONFIG_INLINE_SPIN_UNLOCK_BH=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE=y -CONFIG_INLINE_READ_LOCK=y -CONFIG_INLINE_READ_LOCK_BH=y -CONFIG_INLINE_READ_LOCK_IRQ=y -CONFIG_INLINE_READ_LOCK_IRQSAVE=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_BH=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK_IRQRESTORE=y -CONFIG_INLINE_WRITE_LOCK=y -CONFIG_INLINE_WRITE_LOCK_BH=y -CONFIG_INLINE_WRITE_LOCK_IRQ=y -CONFIG_INLINE_WRITE_LOCK_IRQSAVE=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_BH=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -# CONFIG_FLATMEM_MANUAL is not set -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_BOUNCE=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_MEMORY_FAILURE is not set -# CONFIG_TRANSPARENT_HUGEPAGE is not set -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -# CONFIG_NET is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_ARM_AMBA=y -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCI_DOMAINS_GENERIC=y -CONFIG_PCI_SYSCALL=y -# CONFIG_PCIEPORTBUS is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_PCI_AARDVARK is not set -# CONFIG_PCI_FTPCI100 is not set -# CONFIG_PCI_HOST_GENERIC is not set -# CONFIG_PCIE_XILINX is not set -# CONFIG_PCI_XGENE is not set -# CONFIG_PCIE_ALTERA is not set -# CONFIG_PCI_HOST_THUNDER_PEM is not set -# CONFIG_PCI_HOST_THUNDER_ECAM is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_HISI is not set -# CONFIG_PCIE_ARMADA_8K is not set -# CONFIG_PCIE_KIRIN is not set -# CONFIG_PCI_MESON is not set -# CONFIG_PCIE_AL is not set -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# CONFIG_PCIE_CADENCE_PLAT_HOST is not set -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_MMIO=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_BRCMSTB_GISB_ARB is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_VEXPRESS_CONFIG is not set -# end of Bus devices - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_DYNAMIC=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_RESERVED_MEM=y -CONFIG_OF_RESOLVE=y -CONFIG_OF_OVERLAY=y -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set - -# -# DRBD disabled because PROC_FS or INET not selected -# -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -CONFIG_SRAM=y -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set - -# -# Intel MIC & related support -# -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# end of SCSI device support - -CONFIG_HAVE_PATA_PLATFORM=y -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CAP11XX is not set -# CONFIG_KEYBOARD_BCM is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_AMBAKMI is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -# CONFIG_SERIAL_8250_MANY_PORTS is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_FSL=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_OF_PLATFORM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_AMBA_PL010 is not set -# CONFIG_SERIAL_AMBA_PL011 is not set -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_MVEBU_UART is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_HVC_DCC is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=m -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_OMAP=m -CONFIG_HW_RANDOM_CAVIUM=m -CONFIG_HW_RANDOM_OPTEE=m -# CONFIG_APPLICOM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -CONFIG_I2C_MUX_PCA954x=y -# CONFIG_I2C_MUX_PINCTRL is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_DEMUX_PINCTRL is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -CONFIG_I2C_HELPER_AUTO=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CADENCE is not set -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -CONFIG_I2C_MV64XXX=y -# CONFIG_I2C_NOMADIK is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_THUNDERX is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SINGLE is not set -# CONFIG_PINCTRL_SX150X is not set -# CONFIG_PINCTRL_STMFX is not set -# CONFIG_PINCTRL_OCELOT is not set -CONFIG_PINCTRL_MVEBU=y -CONFIG_PINCTRL_ARMADA_AP806=y -CONFIG_PINCTRL_ARMADA_CP110=y -CONFIG_PINCTRL_ARMADA_37XX=y -# CONFIG_PINCTRL_EQUILIBRIUM is not set -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -# CONFIG_GPIO_SYSFS is not set - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -CONFIG_GPIO_MVEBU=y -# CONFIG_GPIO_PL061 is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XGENE is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -CONFIG_GPIO_PCA953X=y -CONFIG_GPIO_PCA953X_IRQ=y -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -CONFIG_POWER_RESET=y -# CONFIG_POWER_RESET_BRCMSTB is not set -# CONFIG_POWER_RESET_GPIO is not set -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_RESTART is not set -# CONFIG_POWER_RESET_XGENE is not set -# CONFIG_POWER_RESET_SYSCON is not set -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -# CONFIG_SYSCON_REBOOT_MODE is not set -# CONFIG_NVMEM_REBOOT_MODE is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_MANAGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_DETECTOR_MAX14656 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_UCS1002 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_OCC_P8_I2C is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_CPU_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_THERMAL_MMIO is not set -# CONFIG_QORIQ_THERMAL is not set -CONFIG_ARMADA_THERMAL=m -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -CONFIG_REGULATOR_FIXED_VOLTAGE=y -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -CONFIG_REGULATOR_88PG86X=y -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_ANATOP is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX8973 is not set -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MPQ7920 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_VCTRL is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_RCAR_WRITEBACK=y - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -# CONFIG_USB is not set -CONFIG_USB_PCI=y - -# -# USB port drivers -# - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ULPI is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_PWRSEQ_EMMC=y -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=32 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_ARMMMCI is not set -CONFIG_MMC_SDHCI=y -# CONFIG_MMC_SDHCI_PCI is not set -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_OF_ARASAN is not set -# CONFIG_MMC_SDHCI_OF_ASPEED is not set -# CONFIG_MMC_SDHCI_OF_AT91 is not set -# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set -# CONFIG_MMC_SDHCI_CADENCE is not set -# CONFIG_MMC_SDHCI_PXAV3 is not set -# CONFIG_MMC_SDHCI_F_SDH30 is not set -# CONFIG_MMC_SDHCI_MILBEAUT is not set -# CONFIG_MMC_TIFM_SD is not set -# CONFIG_MMC_CB710 is not set -# CONFIG_MMC_VIA_SDMMC is not set -# CONFIG_MMC_DW is not set -# CONFIG_MMC_USDHI6ROL0 is not set -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_TOSHIBA_PCI is not set -# CONFIG_MMC_MTK is not set -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MMC_SDHCI_OMAP is not set -# CONFIG_MMC_SDHCI_AM654 is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_EDAC_SUPPORT=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_SELFTESTS is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO_MENU=y -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_VERSATILE is not set -# CONFIG_CLK_HSDK is not set -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_CLK_QORIQ is not set -# CONFIG_COMMON_CLK_XGENE is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_ARMADA_AP_CP_HELPER=y -CONFIG_ARMADA_37XX_CLK=y -CONFIG_ARMADA_AP806_SYSCON=y -CONFIG_ARMADA_CP110_SYSCON=y -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_ARM_ARCH_TIMER=y -CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y -CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y -CONFIG_FSL_ERRATUM_A008585=y -CONFIG_HISILICON_ERRATUM_161010101=y -CONFIG_ARM64_ERRATUM_858921=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_IOVA=y -CONFIG_IOMMU_API=y -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -CONFIG_IOMMU_IO_PGTABLE=y -CONFIG_IOMMU_IO_PGTABLE_LPAE=y -# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set -# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set -CONFIG_OF_IOMMU=y -CONFIG_IOMMU_DMA=y -CONFIG_ARM_SMMU=y -CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS=y -CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT=y -# CONFIG_ARM_SMMU_V3 is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# CONFIG_QUICC_ENGINE is not set -# CONFIG_FSL_RCPM is not set -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_GIC=y -CONFIG_ARM_GIC_MAX_NR=1 -CONFIG_ARM_GIC_V2M=y -CONFIG_ARM_GIC_V3=y -CONFIG_ARM_GIC_V3_ITS=y -CONFIG_ARM_GIC_V3_ITS_PCI=y -# CONFIG_AL_FIC is not set -CONFIG_MVEBU_GICP=y -CONFIG_MVEBU_ICU=y -CONFIG_MVEBU_ODMI=y -CONFIG_MVEBU_PIC=y -CONFIG_MVEBU_SEI=y -CONFIG_PARTITION_PERCPU=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_PHY_XGENE is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_DP is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -CONFIG_PHY_MVEBU_A3700_COMPHY=y -CONFIG_PHY_MVEBU_A3700_UTMI=y -CONFIG_PHY_MVEBU_A38X_COMPHY=y -CONFIG_PHY_MVEBU_CP110_COMPHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -CONFIG_TEE=y - -# -# TEE drivers -# -CONFIG_OPTEE=y -CONFIG_OPTEE_SHM_NUM_PRIV_PAGES=1 -# end of TEE drivers - -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_FS_POSIX_ACL=y -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -# CONFIG_TMPFS_XATTR is not set -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=m -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="cp-437" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_MARVELL_CESA is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_CCREE is not set -# CONFIG_CRYPTO_DEV_HISI_SEC is not set -# CONFIG_CRYPTO_DEV_HISI_SEC2 is not set -# CONFIG_CRYPTO_DEV_HISI_ZIP is not set -# CONFIG_CRYPTO_DEV_HISI_HPRE is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_INDIRECT_PIO is not set -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -# CONFIG_XZ_DEC_X86 is not set -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -CONFIG_XZ_DEC_ARM=y -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y -CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y -CONFIG_SWIOTLB=y -CONFIG_DMA_NONCOHERENT_MMAP=y -CONFIG_DMA_REMAP=y -CONFIG_DMA_DIRECT_REMAP=y -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_DEBUG_ON is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_HAVE_DEBUG_BUGVERBOSE=y - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -CONFIG_RCU_TRACE=y -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_FUNCTION_TRACER is not set -# CONFIG_STACK_TRACER is not set -# CONFIG_PREEMPTIRQ_EVENTS is not set -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_ENABLE_DEFAULT_TRACERS is not set -# CONFIG_FTRACE_SYSCALLS is not set -# CONFIG_TRACER_SNAPSHOT is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -# CONFIG_BLK_DEV_IO_TRACE is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_PREEMPTIRQ_DELAY_TEST is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -# CONFIG_IO_STRICT_DEVMEM is not set - -# -# arm64 Debugging -# -# CONFIG_PID_IN_CONTEXTIDR is not set -# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_DEBUG_ALIGN_RODATA is not set -# CONFIG_ARM64_RELOC_TEST is not set -# CONFIG_CORESIGHT is not set -# end of arm64 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_PERCPU_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_VMALLOC is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -# diff --git a/mainboards/opentitanpilot/dresden/.gitignore b/mainboards/opentitanpilot/dresden/.gitignore deleted file mode 100644 index bf498185..00000000 --- a/mainboards/opentitanpilot/dresden/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/*.csv -/*.bin -/*.lzma -/*.cpio -/flashkernel -/linux diff --git a/mainboards/opentitanpilot/dresden/Makefile b/mainboards/opentitanpilot/dresden/Makefile deleted file mode 100644 index 0daaad30..00000000 --- a/mainboards/opentitanpilot/dresden/Makefile +++ /dev/null @@ -1,292 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make flashpxeboot.bin -# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make flashpxeboot.bin -# cpu board flashrom -w flashpxeboot.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make flashpxeboot.bin -# flashrom -w flashpxeboot.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# flashpxeboot.bin produces a flash image which will pxeboot. -# cpu.bin produces a flash image that starts a cpu daemon. -# -# You can test the flash image kernel with qemu -# make flashtest - -default: flash - -flash: flashpxeboot.bin - -redgreen: - utk dxeremove.bin table | guid2english |grep File | grep -v PAD | grep -v PEIM | grep -v RAW | grep -v IMAGE | grep -v Sec | awk '{print $$2","$$3",red"}' | sort > red.csv - utk image.bin table | guid2english |grep File | grep -v PAD | grep -v PEIM | grep -v RAW | grep -v IMAGE | grep -v Sec | awk '{print $$2","$$3",green"}' | sort > green.csv - join -a 2 -t , -j1 red.csv green.csv | sed 's/red.*green/red/' > jj.csv - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1 flashkernel \ - save $@ - -cpu.bin: dxeremove.bin cpukernel - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1 cpukernel \ - save $@ - -edk2.bin: dxeremove.bin - echo Note, this inserts the edk2 bds and shell - echo Only flash this image if you have an sf100. - echo It will not be able to boot anything. - utk \ - -xzPath /usr/bin/xz \ - $< \ - insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ - save $@ - -dxeremove.bin: image.bin Makefile - rm -f dxeremove.bin - echo tighten.bin did not go well. - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment leavefornow \ - comment AMITSE \ - comment AMITSE.* \ - comment Bds \ - comment testremove \ - remove Ahci.* \ - remove Arp.* \ - remove Ata.* \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove .*Http.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - remove .*HotPl.* \ - comment try \ - remove .*Tcg.* \ - remove .*Tpm.* \ - remove Tls.* \ - comment BiosVideo.* \ - comment .*BootMan.* \ - remove .*Capsule.* \ - remove Capsule.* \ - comment Terminal.* \ - remove Dns.* \ - remove FirmwarePerformanceDxe \ - remove Hsti.* \ - comment fails \ - comment Legacy82.* \ - comment GenericMemoryTest.* \ - comment BiosG.* \ - comment end_fails \ - comment S3Save_do_not_remove_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment CrbTpm20Acpi \ - comment TcgSmm \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - save $@ - -hap.bin: tighten.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpuflashkernel: cpu.cpio.lzma cpuflash.config - cp cpuflash.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - u-root -o $@ \ - -defaultsh="/bbin/rush" \ - github.com/u-root/u-root/cmds/boot/boot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/exp/rush \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/mount \ - github.com/u-root/u-root/cmds/core/pci \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.8 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unzip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/opentitanpilot/dresden/flash.config b/mainboards/opentitanpilot/dresden/flash.config deleted file mode 100644 index 12fc8d83..00000000 --- a/mainboards/opentitanpilot/dresden/flash.config +++ /dev/null @@ -1,2482 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -# CONFIG_ETHTOOL_NETLINK is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -CONFIG_NET_VENDOR_MYRI=y -# CONFIG_MYRI10GE is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -# CONFIG_USB_EHCI_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -# CONFIG_USB_UAS is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/pcengines/apu/Makefile b/mainboards/pcengines/apu/Makefile deleted file mode 100644 index 4d26b52a..00000000 --- a/mainboards/pcengines/apu/Makefile +++ /dev/null @@ -1,64 +0,0 @@ -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel apu.bin - cp apu.bin image.bin - chmod +w image.bin - cbfstool image.bin print - cbfstool image.bin remove -n img/nerf - cbfstool image.bin remove -n genroms/pxe.rom - cbfstool image.bin add-payload -n img/nerf -f flashkernel - cbfstool image.bin print - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -readrom: - sudo flashrom -p internal -r apu.bin - -writerom: image.bin - sudo flashrom -p internal -w image.bin - -uroot: - go run github.com/u-root/u-root -build=bb -initcmd=/bbin/cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - github.com/u-root/cpu/cmds/cpud \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/ps \ - github.com/u-root/u-root/cmds/core/pwd \ - github.com/u-root/u-root/cmds/core/rm \ - github.com/u-root/u-root/cmds/core/shutdown - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-4.14.111 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz - xzcat kernel.xz | tar x - mv linux-4.14.111 linux -getrom: - echo you create the kernel - echo on the APU2: flashrom -r apu.bin -p internal - echo copy that file here and for safety: - echo chmod a-w apu.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english - diff --git a/mainboards/pcengines/apu/TEST b/mainboards/pcengines/apu/TEST deleted file mode 100644 index b510ec42..00000000 --- a/mainboards/pcengines/apu/TEST +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -set -e -sudo \ - /usr/bin/qemu-system-x86_64 -kernel kernel \ - -cpu max \ - -s \ - -m 1024m \ - -machine q35 \ - -object rng-random,filename=/dev/urandom,id=rng0 \ - -device virtio-rng-pci,rng=rng0 \ - -device e1000,netdev=n1 \ - -netdev user,id=n1,hostfwd=tcp:127.0.0.1:23-:2222,net=192.168.1.0/24,host=192.168.1.1 \ - -serial stdio \ - -append 'earlyprintk=ttyS0,115200 console=ttyS0' \ - -monitor /dev/null - diff --git a/mainboards/pcengines/apu/config-4.14.111 b/mainboards/pcengines/apu/config-4.14.111 deleted file mode 100644 index 01b22f02..00000000 --- a/mainboards/pcengines/apu/config-4.14.111 +++ /dev/null @@ -1,2222 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_FHANDLE is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -# CONFIG_CPU_SUP_INTEL is not set -CONFIG_CPU_SUP_AMD=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# CONFIG_SCSI_DMA is not set -# CONFIG_SCSI_NETLINK is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -# CONFIG_SERIO_LIBPS2 is not set -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_INTEL is not set -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_VIA is not set -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -# CONFIG_ACPI_I2C_OPREGION is not set -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -# CONFIG_DMIID is not set -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -# CONFIG_MSDOS_FS is not set -# CONFIG_VFAT_FS is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_MANAGER2 is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_GF128MUL is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -# CONFIG_CRYPTO_HW is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -# CONFIG_XZ_DEC_BCJ is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -# CONFIG_SG_SPLIT is not set -# CONFIG_SG_POOL is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/pcengines/apu2/Makefile b/mainboards/pcengines/apu2/Makefile deleted file mode 100644 index 782d83f4..00000000 --- a/mainboards/pcengines/apu2/Makefile +++ /dev/null @@ -1,150 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -default: sshdkernel flashkernel cpukernel - echo you can add any of these targets to the apu2 image. - echo as img/nerf. You can also set priority. - -flashtest: testflashkernel - -usefultargets: - echo fetch, sshdkernel, flashkernel, cpukernel, etc. - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo and maybe a cbfstool - echo cbfstool apu2.rom remove -n img/nerf - echo cbfstool apu2.rom add-payload -n img/nerf -f cpukernel - echo sudo flashrom -p internal -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - go run github.com/u-root/u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - go run github.com/u-root/u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.7 --single-branch https://github.com/torvalds/linux - -getrom: - echo you can use flashrom to read the apu2 image. - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/pcengines/apu2/class_key b/mainboards/pcengines/apu2/class_key deleted file mode 100644 index e21ff15c..00000000 --- a/mainboards/pcengines/apu2/class_key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA4zGICkjqlAPbYH0MZGN79zDJi88uC1pbc7cUcHQPp8R9iet0 -2Q594DiOsJhAc9ALDkVopAmDMew1OO9vwZXAkv00hPhnEHFSXJP31zaoWvQkbS/Z -/Ghl8gTTrPpJo+gJ3kCINwM1Z+IEQbjlE1EsvgKQEWQMCN32cD52F1L0UpkRaRzP -FKKxfMOKYCIIbFDbC1iAAsjuIOunlATy4OT1IbNBhkdX2Mx2kTchaJxry4LL+NDs -sIvfrtMJ/5gmIWKYnc4mXr2ozD4ZvCm7ooEnQshSgXXTpjl1AuEJvnaczr+ij66w -KUQhzK3Ukjo99b8xhih4pVlU661KAbezziyuFwIDAQABAoIBAFbib1s3jXYzj2b0 -C5Qss5DR+JHeFobC9GxpXIiw6ffH3harlBEaSKtCFdeVMjjYHBJGGwF4ndKuuZ/f -eYa35WCRMs+TS57vJ4c+Ey8buQCnk3KqNRwhNLN8gxMI2La1G2kCltUrBfaHagdU -VU6w4YJ86mmsMCoH8KH2USUUVVlsdbEgi6oQzPusw4le8a4shTX40YaBi90hv7XX -MshqZDscjM/mqXJVMq8fLJ6IDYeNVLNw3GhlHrlitO2Kheil7ptgrftYdTVqvScR -VNL4lFP6rq3N1BN0eisAwyB2A0mf/sCVc0fKA0qsNsODoVw9g7HBTjx6IFpbQ0Kh -derDBgkCgYEA+tAZftg8z2A+YFdA/fTGxLS82BCsIKJ1kaizDWcshcdZ6AQ2vNwT -JwxzOwiS/Tu1hqNHaE0tYV9cW8hKZC2CdsIquPEEewPNqnwzh6bhUiPmjlPF3Dea -pX2LHklCAOXLtnJqf1ZmbhhWbj/2TIITr/Iq5ae5rk32QAwsyvphswMCgYEA5+Rh -rMVYlXLSss/9rl+89ecrj0ZmXK5HNsheHdI+444wSgIoNP90Z7FHygDAWSV+RWsN -ibpEQxACGhtSgK6IU+9w35fXrEcTfTwyrC5lMxipS5BCkBTSNm9QfASaIZE4Oz+d -Z0ifjCCeG8ppZm/kVscP08BYNsuu3xSttDDi4l0CgYEAizhcDpbFGm9X8G4+ezkV -5DZW5LBMe0jybcnwqa3tfsyrUSiVobufPfuhMtGNlddA6d1UU8cTO4uNXr0M3hKM -6pLY2BOg4w+3Z7zNdaziQY//+Fzz5UtQIjBPup37bzgfHcTg7JHvBYmo4EXM16cU -eoO34AZ8AQ7xc5fOfVUCSjUCgYEA5Pn9fMVtYDz+UnTQkQOWKdZ3i8U/RFsOlMir -LpUxZi87/Yg9vX9VqSJDufKd/Cjqk49O0eWsi+/ds3uxLsGoegEgGpjr7QBN/UaY -3q39XcQHP0cWgwEcRYYLGjrNG0IzHUYGnjr22D5JATYQd4cbGJj9RuFR+eGMLllT -4G65Sj0CgYEAptcid0C4Dodg2LeA+E0dduec9uK4Qj4NkeoEcTw6fBInuP9vkIU7 -LyHDfXKVbCTHC79oc8oQ8OpeVvH999PU15g7MFAUdjrd2MCIEWcQ9WjJr0V3sVn4 -Nze3kVUWRsXhIoG0yWh6SHbc/HKFhKymtxvdPnbP4qajfcCGIKuIA2c= ------END RSA PRIVATE KEY----- diff --git a/mainboards/pcengines/apu2/class_key.pub b/mainboards/pcengines/apu2/class_key.pub deleted file mode 100644 index 5db12a16..00000000 --- a/mainboards/pcengines/apu2/class_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDjMYgKSOqUA9tgfQxkY3v3MMmLzy4LWltztxRwdA+nxH2J63TZDn3gOI6wmEBz0AsORWikCYMx7DU472/BlcCS/TSE+GcQcVJck/fXNqha9CRtL9n8aGXyBNOs+kmj6AneQIg3AzVn4gRBuOUTUSy+ApARZAwI3fZwPnYXUvRSmRFpHM8UorF8w4pgIghsUNsLWIACyO4g66eUBPLg5PUhs0GGR1fYzHaRNyFonGvLgsv40Oywi9+u0wn/mCYhYpidziZevajMPhm8KbuigSdCyFKBddOmOXUC4Qm+dpzOv6KPrrApRCHMrdSSOj31vzGGKHilWVTrrUoBt7POLK4X rminnich@xcpu diff --git a/mainboards/pcengines/apu2/classhostkey b/mainboards/pcengines/apu2/classhostkey deleted file mode 100644 index 9b696249..00000000 --- a/mainboards/pcengines/apu2/classhostkey +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA20e7SsGzrPyXMosKhgXMbvIPSe27ilhgcWw4I1NWsPMWhYEU -DnM66JiqImyN3tTiimwH7WewKxy4opGLbk2ohYvNQBALNXNr1cV7usAQREAIbafp -zZ6mO0gcWjrdsN31aTzMmEXO3dkS+wtEQzKBe/eFjlJbutHvEQkvYWtPeHTtBlVy -wcJEc59orcE+HNXrXLcPuJZF37Z5HkEMNGDWvAutHmnXc3C0cKd+bOdhpTx7DAaW -Fmj1GdL7WMPBQk1qKo4uE8lqOjTB5qwCGhWPtZFgD6QwYIKtZ/VFWMzUytc6ciRw -b5ob6+0+mbL3IFb1XZDbOC3gSbGPV4V0xZrVtwIDAQABAoIBABlIF+vykUishrIp -Hbl+Cafw+JpJconszpHFLGPGRAR6wmn6C9nupygSEeuOIH1Ehin3cqKIheMymIcF -yNGa2ocrKyrrrp8nA5POBQnvAvEbgN1Dss0mMXw8QCiXCOBPdu//NoeH5OXnFS0k -i2ZD+HHWg+t4y2Kqual5KaFNwgfdHJw9vmL/JFzzx2ZuVmIiAl7Pn9dNAu3JgaT2 -cHNEPxw04Pc0rsNd9NiMEuaijRPJhn2ZeDAdyo+RvrK6wI0ZiopG+3ZztKhJ65zT -7si2DjLpr8PMMgYPgMFy1YyoPKokYqnoSrLXMh2Lquy75145aysWNxVa640MNfp6 -vrFSCqECgYEA9T5GkrZ+7DCJfaPST7lqDBB7uON0DAYaSwUSxNVsu+UMAxSlXB25 -fYq3TzJzM+rJcDf5JPQLP2gD2BMYQIQZeHsgoV1UKVxZfJi3YpPCg3uNWxLTzut7 -TGawJBFULNoIrsxh0gLSsFP4RcDTWNUe31+3sD8SirrEz+GWjF9Nc0UCgYEA5OXt -uApDOx8q6XkjNwMNZZJdQ+VeDQh8Wg8mPDNKwg7VejI7idV87tn7LjAa4TcKemRi -WnLMeb98h0VZiWve2UwstiI5yiZon3f7jEJDop9jvg8/Cj2MgEc2hxKxZQxIN2k3 -sFfYMUtTr4Q2WT3Gm3aNERpgjhJjf2dFvMJulssCgYBHSUTmXJnkOe+dT8NQXUsQ -GrJ7+dG/tP5rlBvyjz8+FsQ5GQVAE3vZnDrQkI+gJb1MG1kWfsHOOoPziQlhp4Rn -2xKPFTvjke6JIzMbOmwuH/nk4UIkQZrjiG3m7gqTxwUDGnHMw/lOO/pM/FHy3nBM -6dvRJWRUYxnWe3JxdzpiKQKBgEzBLS2Bg3nXwbP4gu53f46Hve5+g0MrjUdFvTSC -npbkEoGfRoe5puMRBUE/sEPFCSZxcumRhS9uHnvdrWB/Y4LKIFQStf4rUvnmadtm -fPeTKwcYZbMxYGPDfW1dv057B9xM0/e1/TDKaY15cCAMrwSChFsv1SDO2b5nCuN4 -70xxAoGAbRDd2cxSICb+msM17yF1rGEzvcJRI1rjiTK71Gkt2VqfBPk1belz1vY8 -E/KkPMHwhWEMSuCrXnaxYrLZg4cvtbYy7tC+wgn1nXwfON8Cpmm74s0O6ufeE7dh -S4Bsitze0ougzTMGLQO/9M7He/fPqjM4DIi+PvfpAl/ZUXdD/48= ------END RSA PRIVATE KEY----- diff --git a/mainboards/pcengines/apu2/classhostkey.pub b/mainboards/pcengines/apu2/classhostkey.pub deleted file mode 100644 index 5c61a524..00000000 --- a/mainboards/pcengines/apu2/classhostkey.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDbR7tKwbOs/JcyiwqGBcxu8g9J7buKWGBxbDgjU1aw8xaFgRQOczromKoibI3e1OKKbAftZ7ArHLiikYtuTaiFi81AEAs1c2vVxXu6wBBEQAhtp+nNnqY7SBxaOt2w3fVpPMyYRc7d2RL7C0RDMoF794WOUlu60e8RCS9ha094dO0GVXLBwkRzn2itwT4c1etctw+4lkXftnkeQQw0YNa8C60eaddzcLRwp35s52GlPHsMBpYWaPUZ0vtYw8FCTWoqji4TyWo6NMHmrAIaFY+1kWAPpDBggq1n9UVYzNTK1zpyJHBvmhvr7T6ZsvcgVvVdkNs4LeBJsY9XhXTFmtW3 rminnich@xcpu diff --git a/mainboards/pcengines/apu2/cpu.config b/mainboards/pcengines/apu2/cpu.config deleted file mode 100644 index 58375b23..00000000 --- a/mainboards/pcengines/apu2/cpu.config +++ /dev/null @@ -1,2842 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_PATA_TIMINGS=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_DEVPORT is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -# CONFIG_MMC_HSQ is not set -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/pcengines/apu2/flash.config b/mainboards/pcengines/apu2/flash.config deleted file mode 100644 index a0e1476a..00000000 --- a/mainboards/pcengines/apu2/flash.config +++ /dev/null @@ -1,2080 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/pcengines/apu2/sshd.config b/mainboards/pcengines/apu2/sshd.config deleted file mode 100644 index af0b5d9d..00000000 --- a/mainboards/pcengines/apu2/sshd.config +++ /dev/null @@ -1,2842 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_PATA_TIMINGS=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_DEVPORT is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -# CONFIG_MMC_HSQ is not set -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/qemu/x86_64/Makefile b/mainboards/qemu/x86_64/Makefile index 7aa6282d..ce4bc62d 100644 --- a/mainboards/qemu/x86_64/Makefile +++ b/mainboards/qemu/x86_64/Makefile @@ -1,5 +1,10 @@ -flashinitramfs.cpio: - u-root -o $@ \ +OVMF_BIN ?= /usr/share/qemu/OVMF.fd + +flashinitramfs.cpio: flashkernel core.cpio + GO111MODULE=off u-root -o $@ \ + -files flashkernel \ + -files core.cpio \ + -files /usr/bin/gzip \ github.com/u-root/u-root/cmds/boot/pxeboot \ github.com/u-root/u-root/cmds/core/cat \ github.com/u-root/u-root/cmds/core/elvish \ @@ -10,7 +15,10 @@ flashinitramfs.cpio: github.com/u-root/u-root/cmds/core/pci \ github.com/u-root/u-root/cmds/core/wget -flashkernel: flash.config +core.cpio: flash.config Makefile + GO111MODULE=off u-root -o $@ + +flashkernel: flash.config core.cpio cp $< linux/.config echo CONFIG_CMDLINE_BOOL=y >> linux/.config echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config @@ -18,14 +26,27 @@ flashkernel: flash.config (cd linux && make olddefconfig && make -j32) cp linux/arch/x86/boot/bzImage $@ +efikernel: flash.config + cp $< linux/.config + echo CONFIG_CMDLINE_BOOL=y >> linux/.config + echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config + echo CONFIG_EFI_STUB=y >> linux/.config + echo 'CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200"' >> linux/.config + (cd linux && make olddefconfig && make -j32) + cp linux/arch/x86/boot/bzImage $@ + testflashkernel: flashkernel flashinitramfs.cpio - qemu-system-x86_64 -kernel flashkernel -nographic -initrd flashinitramfs.cpio + qemu-system-x86_64 -m 512 -kernel flashkernel -nographic -serial mon:stdio -initrd flashinitramfs.cpio + +testefikernel: efikernel flashinitramfs.cpio + qemu-system-x86_64 -bios $(OVMF_BIN) -nographic \ + -kernel efikernel -initrd flashinitramfs.cpio fetch: getkernel geturoot getkernel: rm -rf linux - git clone --depth=1 -b v5.10 https://github.com/torvalds/linux + git clone --depth=1 -b v5.15 https://github.com/torvalds/linux geturoot: - go get -u github.com/u-root/u-root + GO111MODULE=off go get -u github.com/u-root/u-root diff --git a/mainboards/qemu/x86_64/flash.config b/mainboards/qemu/x86_64/flash.config index c44888e5..96d4b9e2 100644 --- a/mainboards/qemu/x86_64/flash.config +++ b/mainboards/qemu/x86_64/flash.config @@ -1,108 +1,2982 @@ -# Copyright 2021 the u-root Authors. All rights reserved -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file. +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.10.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_LD_VERSION=235010000 +CONFIG_CLANG_VERSION=0 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y -# If you copy this to your Linux directory, run -# make olddefconfig -# to fill in the blanks. # -# This is not intended to be a minimal Linux configuration, but perhaps it comes -# close to listing requirements for certain things. +# General setup +# +CONFIG_BROKEN_ON_SMP=y +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +# CONFIG_SYSVIPC is not set +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_WATCH_QUEUE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y -# Minimal kernel config needed for Go -CONFIG_64BIT=y -CONFIG_BINFMT_ELF=y +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_SIM=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_HZ_PERIODIC=y +# CONFIG_NO_HZ_IDLE is not set +# CONFIG_NO_HZ is not set +# CONFIG_HIGH_RES_TIMERS is not set +# end of Timers subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_BSD_PROCESS_ACCT is not set +# CONFIG_TASKSTATS is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# +# RCU Subsystem +# +CONFIG_TINY_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TINY_SRCU=y +# end of RCU Subsystem + +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_TIME_NS=y +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +CONFIG_NET_NS=y +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set CONFIG_BLK_DEV_INITRD=y -CONFIG_DEVTMPFS=y -CONFIG_EARLY_PRINTK=y -CONFIG_EPOLL=y -CONFIG_FUTEX=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_RD_ZSTD=y +# CONFIG_BOOT_CONFIG is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +# CONFIG_EXPERT is not set +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y CONFIG_PRINTK=y -CONFIG_PROC_FS=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y -# Serial port output -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_TTY=y +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters -# Block devices -CONFIG_BLOCK=y -CONFIG_ATA=y -CONFIG_SATA_AHCI=y -CONFIG_BLK_DEV_NVME=y -CONFIG_BLK_DEV_SD=y -# Allows using -hda when running QEMU -CONFIG_ATA_PIIX=y +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_SLUB_DEBUG=y +CONFIG_COMPAT_BRK=y +# CONFIG_SLAB is not set +CONFIG_SLUB=y +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +# end of General setup -# vfat+ext4 filesystem -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -CONFIG_NLS=y -CONFIG_NLS_CODEPAGE_437=y -CONFIG_NLS_ISO8859_1=y -CONFIG_EXT4_FS=y +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=5 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y -# Loop device for tcz -CONFIG_BLK_DEV_LOOP=y -CONFIG_MISC_FILESYSTEMS=y -CONFIG_SQUASHFS=y +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +# CONFIG_SMP is not set +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_X86_CPU_RESCTRL is not set +CONFIG_X86_EXTENDED_PLATFORM=y +# CONFIG_X86_GOLDFISH is not set +# CONFIG_X86_INTEL_MID is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_GART_IOMMU is not set +CONFIG_NR_CPUS_RANGE_BEGIN=1 +CONFIG_NR_CPUS_RANGE_END=1 +CONFIG_NR_CPUS_DEFAULT=1 +CONFIG_NR_CPUS=1 +CONFIG_UP_LATE_INIT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +CONFIG_X86_THERMAL_VECTOR=y -# Add /dev/port for io command -CONFIG_PCI=y -CONFIG_DEVPORT=y +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring -# For the kernel doing the kexec'ing -CONFIG_CRYPTO=y +CONFIG_X86_16BIT=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_VSYSCALL_EMULATION=y +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +# CONFIG_MICROCODE_OLD_INTERFACE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +CONFIG_X86_5LEVEL=y +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_UMIP=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +# CONFIG_EFI_STUB is not set +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y - -# For the kernel being kexec'ed +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0x0 +# CONFIG_LEGACY_VSYSCALL_EMULATE is not set +CONFIG_LEGACY_VSYSCALL_XONLY=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +CONFIG_CMDLINE_OVERRIDE=y +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features -# Add EFI support -CONFIG_EFI=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# Frame buffer graphics support -CONFIG_FB_SIMPLE=y -CONFIG_FB=y +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_HIBERNATION is not set +CONFIG_PM_SLEEP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +# CONFIG_PM_DEBUG is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_ACPI_DPTF is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_PMIC_OPREGION is not set +CONFIG_X86_PM_TIMER=y +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +# CONFIG_CPU_FREQ is not set +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y CONFIG_X86_SYSFB=y +# end of Bus options (PCI etc.) -# Virtio Networking + random + storage -CONFIG_VIRTIO_PCI=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_CRYPTO_DEV_VIRTIO=y -CONFIG_VIRTIO_BLK=y -CONFIG_VIRTIO_SCSI=y -CONFIG_VIRTIO_NET=y +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +CONFIG_VIRTUALIZATION=y +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_GENERIC_ENTRY=y +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y + +# +# GCOV-based kernel profiling +# +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_SED_OPAL is not set +# CONFIG_BLK_INLINE_ENCRYPTION is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set +CONFIG_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_BOUNCE=y +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_MEMORY_FAILURE is not set +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_NEED_PER_CPU_KM=y +# CONFIG_CLEANCACHE is not set +# CONFIG_FRONTSWAP is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options -# Networking CONFIG_NET=y -CONFIG_INET=y + +# +# Networking options +# CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_PNP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set CONFIG_IPV6=y -CONFIG_NET_CORE=y -CONFIG_NETDEVICES=y -CONFIG_ETHERNET=y -CONFIG_E1000=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options -# 9P net filesystem +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_WIRELESS=y +# CONFIG_CFG80211 is not set + +# +# CFG80211 needs to be enabled for MAC80211 +# +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set CONFIG_NET_9P=y CONFIG_NET_9P_VIRTIO=y -CONFIG_9P_FS=y +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_FAILOVER=y +CONFIG_ETHTOOL_NETLINK=y +CONFIG_HAVE_EBPF_JIT=y -# GPIO test - mock GPIO libraries -CONFIG_GPIOLIB=y -CONFIG_GPIO_MOCKUP=y +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCIEPORTBUS is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCI_MSI is not set +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set -# Compressed initramfs -CONFIG_KERNEL_GZIP=y +# +# PCI controller drivers +# -# iSCSI initiator support -CONFIG_ISCSI_TCP=y +# +# DesignWare PCI Core Support +# +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set -# NBD (Network Block Device) support: will automatically re-read partitions when -# iSCSI disk is mounted. +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_FD is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set CONFIG_BLK_DEV_NBD=y +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +CONFIG_VIRTIO_BLK=y +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +CONFIG_NVME_CORE=y +CONFIG_BLK_DEV_NVME=y +# CONFIG_NVME_MULTIPATH is not set +# CONFIG_NVME_HWMON is not set +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TCP is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_93CX6 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# +# Altera FPGA firmware download module (requires I2C) +# +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +CONFIG_SCSI_ISCSI_ATTRS=y +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=y +# CONFIG_ISCSI_BOOT_SYSFS is not set +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC94XX is not set +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_DPT_I2O is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_SAS is not set +# CONFIG_SCSI_MPT3SAS is not set +# CONFIG_SCSI_MPT2SAS is not set +# CONFIG_SCSI_SMARTPQI is not set +# CONFIG_SCSI_UFSHCD is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_BUSLOGIC is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_MYRS is not set +# CONFIG_VMWARE_PVSCSI is not set +# CONFIG_SCSI_SNIC is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_FDOMAIN_PCI is not set +# CONFIG_SCSI_GDTH is not set +# CONFIG_SCSI_ISCI is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_IPR is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SCSI_DEBUG is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_PM8001 is not set +# CONFIG_SCSI_VIRTIO is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_ATA=y +CONFIG_SATA_HOST=y +CONFIG_PATA_TIMINGS=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_MOBILE_LPM_POLICY=0 +# CONFIG_SATA_AHCI_PLATFORM is not set +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +# CONFIG_PDC_ADMA is not set +# CONFIG_SATA_QSTOR is not set +# CONFIG_SATA_SX4 is not set +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=y +# CONFIG_SATA_MV is not set +# CONFIG_SATA_NV is not set +# CONFIG_SATA_PROMISE is not set +# CONFIG_SATA_SIL is not set +# CONFIG_SATA_SIS is not set +# CONFIG_SATA_SVW is not set +# CONFIG_SATA_ULI is not set +# CONFIG_SATA_VIA is not set +# CONFIG_SATA_VITESSE is not set + +# +# PATA SFF controllers with BMDMA +# +# CONFIG_PATA_ALI is not set +# CONFIG_PATA_AMD is not set +# CONFIG_PATA_ARTOP is not set +# CONFIG_PATA_ATIIXP is not set +# CONFIG_PATA_ATP867X is not set +# CONFIG_PATA_CMD64X is not set +# CONFIG_PATA_CYPRESS is not set +# CONFIG_PATA_EFAR is not set +# CONFIG_PATA_HPT366 is not set +# CONFIG_PATA_HPT37X is not set +# CONFIG_PATA_HPT3X2N is not set +# CONFIG_PATA_HPT3X3 is not set +# CONFIG_PATA_IT8213 is not set +# CONFIG_PATA_IT821X is not set +# CONFIG_PATA_JMICRON is not set +# CONFIG_PATA_MARVELL is not set +# CONFIG_PATA_NETCELL is not set +# CONFIG_PATA_NINJA32 is not set +# CONFIG_PATA_NS87415 is not set +# CONFIG_PATA_OLDPIIX is not set +# CONFIG_PATA_OPTIDMA is not set +# CONFIG_PATA_PDC2027X is not set +# CONFIG_PATA_PDC_OLD is not set +# CONFIG_PATA_RADISYS is not set +# CONFIG_PATA_RDC is not set +# CONFIG_PATA_SCH is not set +# CONFIG_PATA_SERVERWORKS is not set +# CONFIG_PATA_SIL680 is not set +# CONFIG_PATA_SIS is not set +# CONFIG_PATA_TOSHIBA is not set +# CONFIG_PATA_TRIFLEX is not set +# CONFIG_PATA_VIA is not set +# CONFIG_PATA_WINBOND is not set + +# +# PIO-only SFF controllers +# +# CONFIG_PATA_CMD640_PCI is not set +# CONFIG_PATA_MPIIX is not set +# CONFIG_PATA_NS87410 is not set +# CONFIG_PATA_OPTI is not set +# CONFIG_PATA_RZ1000 is not set + +# +# Generic fallback / legacy drivers +# +# CONFIG_PATA_ACPI is not set +# CONFIG_ATA_GENERIC is not set +# CONFIG_PATA_LEGACY is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +# CONFIG_NETCONSOLE is not set +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +CONFIG_VIRTIO_NET=y +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_NET_VENDOR_3COM=y +# CONFIG_VORTEX is not set +# CONFIG_TYPHOON is not set +CONFIG_NET_VENDOR_ADAPTEC=y +# CONFIG_ADAPTEC_STARFIRE is not set +CONFIG_NET_VENDOR_AGERE=y +# CONFIG_ET131X is not set +CONFIG_NET_VENDOR_ALACRITECH=y +# CONFIG_SLICOSS is not set +CONFIG_NET_VENDOR_ALTEON=y +# CONFIG_ACENIC is not set +# CONFIG_ALTERA_TSE is not set +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_NET_VENDOR_AMD=y +# CONFIG_AMD8111_ETH is not set +# CONFIG_PCNET32 is not set +# CONFIG_AMD_XGBE is not set +CONFIG_NET_VENDOR_AQUANTIA=y +# CONFIG_AQTION is not set +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +# CONFIG_ATL2 is not set +# CONFIG_ATL1 is not set +# CONFIG_ATL1E is not set +# CONFIG_ATL1C is not set +# CONFIG_ALX is not set +CONFIG_NET_VENDOR_AURORA=y +# CONFIG_AURORA_NB8800 is not set +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCMGENET is not set +# CONFIG_BNX2 is not set +# CONFIG_CNIC is not set +# CONFIG_TIGON3 is not set +# CONFIG_BNX2X is not set +# CONFIG_SYSTEMPORT is not set +# CONFIG_BNXT is not set +CONFIG_NET_VENDOR_BROCADE=y +# CONFIG_BNA is not set +CONFIG_NET_VENDOR_CADENCE=y +# CONFIG_MACB is not set +CONFIG_NET_VENDOR_CAVIUM=y +# CONFIG_THUNDER_NIC_PF is not set +# CONFIG_THUNDER_NIC_VF is not set +# CONFIG_THUNDER_NIC_BGX is not set +# CONFIG_THUNDER_NIC_RGX is not set +# CONFIG_LIQUIDIO is not set +CONFIG_NET_VENDOR_CHELSIO=y +# CONFIG_CHELSIO_T1 is not set +# CONFIG_CHELSIO_T3 is not set +# CONFIG_CHELSIO_T4 is not set +# CONFIG_CHELSIO_T4VF is not set +CONFIG_NET_VENDOR_CISCO=y +# CONFIG_ENIC is not set +CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +CONFIG_NET_VENDOR_DEC=y +# CONFIG_NET_TULIP is not set +CONFIG_NET_VENDOR_DLINK=y +# CONFIG_DL2K is not set +# CONFIG_SUNDANCE is not set +CONFIG_NET_VENDOR_EMULEX=y +# CONFIG_BE2NET is not set +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +# CONFIG_E1000E is not set +# CONFIG_IGB is not set +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_I40E is not set +# CONFIG_IGC is not set +# CONFIG_JME is not set +CONFIG_NET_VENDOR_MARVELL=y +# CONFIG_MVMDIO is not set +# CONFIG_SKGE is not set +# CONFIG_SKY2 is not set +CONFIG_NET_VENDOR_MELLANOX=y +# CONFIG_MLX4_EN is not set +# CONFIG_MLX5_CORE is not set +# CONFIG_MLXSW_CORE is not set +# CONFIG_MLXFW is not set +CONFIG_NET_VENDOR_MICREL=y +# CONFIG_KS8851_MLL is not set +# CONFIG_KSZ884X_PCI is not set +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_LAN743X is not set +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MYRI=y +# CONFIG_MYRI10GE is not set +# CONFIG_FEALNX is not set +CONFIG_NET_VENDOR_NATSEMI=y +# CONFIG_NATSEMI is not set +# CONFIG_NS83820 is not set +CONFIG_NET_VENDOR_NETERION=y +# CONFIG_S2IO is not set +# CONFIG_VXGE is not set +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +CONFIG_NET_VENDOR_8390=y +# CONFIG_NE2K_PCI is not set +CONFIG_NET_VENDOR_NVIDIA=y +# CONFIG_FORCEDETH is not set +CONFIG_NET_VENDOR_OKI=y +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +# CONFIG_HAMACHI is not set +# CONFIG_YELLOWFIN is not set +CONFIG_NET_VENDOR_PENSANDO=y +# CONFIG_IONIC is not set +CONFIG_NET_VENDOR_QLOGIC=y +# CONFIG_QLA3XXX is not set +# CONFIG_QLCNIC is not set +# CONFIG_NETXEN_NIC is not set +# CONFIG_QED is not set +CONFIG_NET_VENDOR_QUALCOMM=y +# CONFIG_QCOM_EMAC is not set +# CONFIG_RMNET is not set +CONFIG_NET_VENDOR_RDC=y +# CONFIG_R6040 is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +# CONFIG_R8169 is not set +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +# CONFIG_SXGBE_ETH is not set +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SOLARFLARE=y +# CONFIG_SFC is not set +# CONFIG_SFC_FALCON is not set +CONFIG_NET_VENDOR_SILAN=y +# CONFIG_SC92031 is not set +CONFIG_NET_VENDOR_SIS=y +# CONFIG_SIS900 is not set +# CONFIG_SIS190 is not set +CONFIG_NET_VENDOR_SMSC=y +# CONFIG_EPIC100 is not set +# CONFIG_SMSC911X is not set +# CONFIG_SMSC9420 is not set +CONFIG_NET_VENDOR_SOCIONEXT=y +CONFIG_NET_VENDOR_STMICRO=y +# CONFIG_STMMAC_ETH is not set +CONFIG_NET_VENDOR_SUN=y +# CONFIG_HAPPYMEAL is not set +# CONFIG_SUNGEM is not set +# CONFIG_CASSINI is not set +# CONFIG_NIU is not set +CONFIG_NET_VENDOR_SYNOPSYS=y +# CONFIG_DWC_XLGMAC is not set +CONFIG_NET_VENDOR_TEHUTI=y +# CONFIG_TEHUTI is not set +CONFIG_NET_VENDOR_TI=y +# CONFIG_TI_CPSW_PHY_SEL is not set +# CONFIG_TLAN is not set +CONFIG_NET_VENDOR_VIA=y +# CONFIG_VIA_RHINE is not set +# CONFIG_VIA_VELOCITY is not set +CONFIG_NET_VENDOR_WIZNET=y +# CONFIG_WIZNET_W5100 is not set +# CONFIG_WIZNET_W5300 is not set +CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_AXI_EMAC is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +# CONFIG_PHYLIB is not set +# CONFIG_MDIO_DEVICE is not set + +# +# PCS device drivers +# +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +# CONFIG_ATH5K_PCI is not set +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_WLAN_VENDOR_INTERSIL=y +# CONFIG_HOSTAP is not set +# CONFIG_PRISM54 is not set +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_WLAN_VENDOR_MICROCHIP=y +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_WLAN_VENDOR_QUANTENNA=y + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +CONFIG_NET_FAILOVER=y +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_FF_MEMLESS=y +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +# CONFIG_SERIAL_8250_EXTENDED is not set +CONFIG_SERIAL_8250_DWLIB=y +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_LPSS=y +CONFIG_SERIAL_8250_MID=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_BA431 is not set +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=y +# CONFIG_HW_RANDOM_XIPHERA is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set +# CONFIG_NVRAM is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_DEVPORT=y +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +# CONFIG_I2C is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +# CONFIG_PINCTRL is not set +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +# CONFIG_DEBUG_GPIO is not set +# CONFIG_GPIO_SYSFS is not set +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_ICH is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH is not set +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# CONFIG_GPIO_AGGREGATOR is not set +CONFIG_GPIO_MOCKUP=y +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_LT3651 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_ABITUGURU is not set +# CONFIG_SENSORS_ABITUGURU3 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_AMD_ENERGY is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_DRIVETEMP is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# end of Intel thermal drivers + +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_MADERA is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMC_BXT is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +# CONFIG_FB_MODE_HELPERS is not set +# CONFIG_FB_TILEBLITTING is not set + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +# CONFIG_FB_VESA is not set +# CONFIG_FB_EFI is not set +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +CONFIG_FB_SIMPLE=y +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# CONFIG_FRAMEBUFFER_CONSOLE is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=y +# CONFIG_HID_ACRUX is not set +CONFIG_HID_APPLE=y +# CONFIG_HID_AUREAL is not set +CONFIG_HID_BELKIN=y +CONFIG_HID_CHERRY=y +CONFIG_HID_CHICONY=y +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +CONFIG_HID_CYPRESS=y +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +CONFIG_HID_EZKEY=y +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +CONFIG_HID_ITE=y +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +CONFIG_HID_KENSINGTON=y +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +CONFIG_HID_REDRAGON=y +CONFIG_HID_MICROSOFT=y +CONFIG_HID_MONTEREY=y +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +# CONFIG_USB is not set +CONFIG_USB_PCI=y + +# +# USB port drivers +# + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +# CONFIG_VIRTIO_BALLOON is not set +# CONFIG_VIRTIO_INPUT is not set +# CONFIG_VIRTIO_MMIO is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_NET is not set +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACPI_WMI is not set +# CONFIG_ACERHDF is not set +# CONFIG_ACER_WIRELESS is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_DCDBAS is not set +# CONFIG_DELL_SMBIOS is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DELL_SMO8800 is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_HP_WIRELESS is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_INT0002_VGPIO is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_SYSTEM76_ACPI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_RST is not set +# CONFIG_INTEL_SMARTCONNECT is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set +# CONFIG_INTEL_PMC_CORE is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_INTEL_SCU_PCI is not set +# CONFIG_INTEL_SCU_PLATFORM is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_HAVE_CLK=y +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +# end of Generic IOMMU Pagetable Support + +# CONFIG_AMD_IOMMU is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +# CONFIG_GENERIC_PHY is not set +# CONFIG_USB_LGM_PHY is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_IOMAP=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT2=y +# CONFIG_EXT4_FS_POSIX_ACL is not set +# CONFIG_EXT4_FS_SECURITY is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +# CONFIG_TMPFS is not set +# CONFIG_HUGETLBFS is not set +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +# CONFIG_SQUASHFS_XZ is not set +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,bpf" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_NULL is not set +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +CONFIG_CRYPTO_ENGINE=y + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA256 is not set +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +# CONFIG_CRYPTO_AES is not set +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set + +# +# Crypto library routines +# +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +CONFIG_CRYPTO_DEV_VIRTIO=y +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_COMPRESSED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +CONFIG_GDB_SCRIPTS=y +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_DEBUG_FS is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +# CONFIG_IO_STRICT_DEVMEM is not set + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +# CONFIG_TEST_FPU is not set +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/seeed/beaglev/BOOTCMDS b/mainboards/seeed/beaglev/BOOTCMDS deleted file mode 100644 index 2213ab53..00000000 --- a/mainboards/seeed/beaglev/BOOTCMDS +++ /dev/null @@ -1,7 +0,0 @@ -fatls mmc 0:1 -fatload mmc 0:1 ${kernel_addr_r} Image.gz -fatload mmc 0:1 ${kernel_addr_r} Image -fatload mmc 0:1 ${fdt_addr_r} u-boot.dtb -fatload mmc 0:1 ${ramdisk_addr_r} cpu.cpio.gz -booti ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r} - diff --git a/mainboards/seeed/beaglev/Makefile b/mainboards/seeed/beaglev/Makefile deleted file mode 100644 index bd5dc222..00000000 --- a/mainboards/seeed/beaglev/Makefile +++ /dev/null @@ -1,208 +0,0 @@ -# This is the makefile for a kernel, uboot image, and initramfs from u-root -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd. -# ssh -i class_key -p 2022 board date -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands. -# to flash the flash image. -# e.g. -# cpu board date -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -MAJOR ?= 5 -STABLE = $(MAJOR).14 -CONFIG ?= $(MAJOR).14.esmil -LINUX=linux-$(CONFIG) -KERNCONFIG=$(CONFIG).config - -default: flash - echo you can add any of these targets to the beaglev image. - echo as img/nerf. You can also set priority. - -flash: flashkernel - -flashtest: testflashkernel - -usefultargets: - echo fetch, sshdkernel, flashkernel, cpukernel, etc. - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config $(LINUX)/.config - (cd $(LINUX) && make oldconfig && make -j32) - cp $(LINUX)/arch/x86/boot/bzImage $@ - -cp: cpukernel cpu.cpio.gz - sudo mount /dev/sdb1 /mnt - sudo cp u-boot.* Image.gz cpu.cpio.gz BOOTCMDS /mnt - sudo umount /mnt - -cpu: cpukernel u-boot.bin u-boot.dtb cpu.cpio.gz - echo Now copy these things to the stick. - echo e.g. assuming it is mounted at /mnt - echo sudo cp u-boot.* Image.gz cpu.cpio.gz BOOTCMDS /mnt - -cpukernel: cpu.config cpu.cpio Makefile - cp cpu.config $(LINUX)/.config - (cd $(LINUX) && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv -j4 oldconfig && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv -j4 && mkdir -p boot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv INSTALL_PATH=/tmp zinstall) - cp $(LINUX)/arch/riscv/boot/Image.gz cpuImage.gz - cp $(LINUX)/arch/riscv/boot/Image cpuImage - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -u-boot.bin: ubootconfig - (cd uboot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv u-boot.bin) - cp uboot/u-boot.bin $@ - -u-boot.dtb: ubootconfig - (cd uboot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv u-boot.dtb) - cp uboot/u-boot.dtb $@ - -ubootconfig: Makefile - (cd uboot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv starfive_vic7100_beagle_v_smode_defconfig) - -OLDubootconfig: Makefile - echo This is idempotent - sed -i 's/CONFIG_SYS_TEXT_BASE=.*/CONFIG_SYS_TEXT_BASE=0x80020000/p' uboot/configs/starfive_vic7100_beagle_v_smode_defconfig - (cd uboot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv starfive_vic7100_beagle_v_smode_defconfig) - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo and maybe a cbfstool - echo cbfstool beaglev.rom remove -n img/nerf - echo cbfstool beaglev.rom add-payload -n img/nerf -f cpukernel - echo sudo flashrom -p internal -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - echo NO GO111MODULE=off GOARCH=riscv64 u-root -o $@ -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - -uinitcmd /bbin/cpud \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/cpu/cmds/cpud - GO111MODULE=off GOARCH=riscv64 u-root -o $@ -files ~/.ssh/cpu_rsa.pub:key.pub \ - -uinitcmd /bbin/cpud \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/cpu/cmds/cpud - -# This target builds a full-featured initramfs INCLUDING cpud. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.gz: cpu.cpio Makefile - gzip -f -k cpu.cpio - -cpu.cpio: - GO111MODULE=off GOARCH=riscv64 u-root -o cpu.cpio -files ~/.ssh/cpu_rsa.pub:key.pub \ - all \ - github.com/u-root/cpu/cmds/cpud - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - go run github.com/u-root/u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp flash-$(KERNCONFIG) $(LINUX)/.config - (cd $(LINUX) && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv -j4 oldconfig && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv -j4 && mkdir -p boot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv INSTALL_PATH=/tmp zinstall) - cp $(LINUX)/arch/riscv/boot/Image.gz flashImage.gz - cp $(LINUX)/arch/riscv/boot/Image flashImage - ls -l flashImage* - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getrom getuboot - -getkernel: - rm -rf $(LINUX) - git clone https://github.com/starfive-tech/beagle_kernel_5.10 $(LINUX) - (cd $(LINUX) && git checkout -b starfive origin/beaglev) -# fyi: make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv starfive_vic7100_evb_sd_net_fedora_defconfig -# Change to taste - -getrom: - echo you can use flashrom to read the beaglev image. - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -getuboot: - git clone https://github.com/starfive-tech/beagle_uboot-opensbi uboot - -packages: - echo this sucks. - sudo apt-get \ - install \ - autoconf \ - automake \ - autotools-dev \ - bc \ - bison \ - build-essential \ - curl \ - flex \ - gawk \ - gdisk \ - git \ - gperf \ - libgmp-dev \ - libmpc-dev \ - libmpfr-dev \ - libncurses-dev \ - libssl-dev \ - libtool \ - patchutils \ - python \ - screen \ - texinfo \ - unzip \ - zlib1g-dev \ - device-tree-compiler - sudo apt install gcc-riscv64-linux-gnu u-boot-tools - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/seeed/beaglev/cpu.config b/mainboards/seeed/beaglev/cpu.config deleted file mode 100644 index 73032faa..00000000 --- a/mainboards/seeed/beaglev/cpu.config +++ /dev/null @@ -1,3251 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/riscv 5.13.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="riscv64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23601 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23601 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-starlight" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_WATCH_QUEUE=y -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y - -# -# BPF subsystem -# -CONFIG_BPF_SYSCALL=y -CONFIG_BPF_UNPRIV_DEFAULT_OFF=y -# CONFIG_BPF_PRELOAD is not set -# end of BPF subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set -CONFIG_PSI=y -# CONFIG_PSI_DEFAULT_DISABLED is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -# CONFIG_MEMCG is not set -# CONFIG_BLK_CGROUP is not set -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_DEVICE is not set -CONFIG_CGROUP_CPUACCT=y -# CONFIG_CGROUP_PERF is not set -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -# CONFIG_INITRAMFS_FORCE is not set -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_USERFAULTFD=y -CONFIG_KCMP=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_SLUB_DEBUG is not set -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SHUFFLE_PAGE_ALLOCATOR=y -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_SYSTEM_DATA_VERIFICATION=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_RISCV=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=24 -CONFIG_RISCV_SBI=y -CONFIG_MMU=y -CONFIG_ZONE_DMA32=y -CONFIG_VA_BITS=39 -CONFIG_PA_BITS=56 -CONFIG_PAGE_OFFSET=0xffffffe000000000 -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=3 -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_RISCV_UNCACHED_OFFSET=0xF80000000 -CONFIG_RISCV_DMA_NONCOHERENT=y - -# -# SoC selection -# -# CONFIG_SOC_MICROCHIP_POLARFIRE is not set -CONFIG_SOC_SIFIVE=y -CONFIG_SOC_STARFIVE_VIC7100=y - -# -# StarFive VIC7100 SoC Debug Option -# -CONFIG_SOC_STARFIVE_VIC7100_I2C_GPIO=y -# end of StarFive VIC7100 SoC Debug Option - -# CONFIG_SOC_VIRT is not set -# end of SoC selection - -# -# CPU errata selection -# -CONFIG_RISCV_ERRATA_ALTERNATIVE=y -CONFIG_ERRATA_SIFIVE=y -CONFIG_ERRATA_SIFIVE_CIP_453=y -CONFIG_ERRATA_SIFIVE_CIP_1200=y -# end of CPU errata selection - -# -# Platform type -# -# CONFIG_ARCH_RV32I is not set -CONFIG_ARCH_RV64I=y -# CONFIG_CMODEL_MEDLOW is not set -CONFIG_CMODEL_MEDANY=y -CONFIG_MAXPHYSMEM_128GB=y -CONFIG_SMP=y -CONFIG_NR_CPUS=4 -# CONFIG_HOTPLUG_CPU is not set -CONFIG_TUNE_GENERIC=y -# CONFIG_NUMA is not set -CONFIG_RISCV_ISA_C=y - -# -# supported PMU type -# -CONFIG_RISCV_BASE_PMU=y -# end of supported PMU type - -CONFIG_FPU=y -# end of Platform type - -# -# Kernel features -# -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_RISCV_SBI_V01=y -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -# end of Kernel features - -# -# Boot options -# -CONFIG_CMDLINE="console=ttyS0,115200 debug rootwait earlycon=sbi ip=dhcp stmmac.chain_mode=1" -# CONFIG_CMDLINE_FALLBACK is not set -# CONFIG_CMDLINE_EXTEND is not set -CONFIG_CMDLINE_FORCE=y -CONFIG_EFI_STUB=y -CONFIG_EFI=y -# CONFIG_PHYS_RAM_BASE_FIXED is not set -# end of Boot options - -# -# Power management options -# -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_ESRT=y -CONFIG_EFI_PARAMS_FROM_FDT=y -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_ARCH_HAS_DMA_SET_UNCACHED=y -CONFIG_ARCH_HAS_DMA_CLEAR_UNCACHED=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_LTO_NONE=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -CONFIG_BLK_WBT=y -CONFIG_BLK_WBT_MQ=y -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -CONFIG_PARTITION_ADVANCED=y -# CONFIG_ACORN_PARTITION is not set -# CONFIG_AIX_PARTITION is not set -# CONFIG_OSF_PARTITION is not set -# CONFIG_AMIGA_PARTITION is not set -# CONFIG_ATARI_PARTITION is not set -# CONFIG_MAC_PARTITION is not set -CONFIG_MSDOS_PARTITION=y -# CONFIG_BSD_DISKLABEL is not set -# CONFIG_MINIX_SUBPARTITION is not set -# CONFIG_SOLARIS_X86_PARTITION is not set -# CONFIG_UNIXWARE_DISKLABEL is not set -# CONFIG_LDM_PARTITION is not set -# CONFIG_SGI_PARTITION is not set -# CONFIG_ULTRIX_PARTITION is not set -# CONFIG_SUN_PARTITION is not set -# CONFIG_KARMA_PARTITION is not set -CONFIG_EFI_PARTITION=y -# CONFIG_SYSV68_PARTITION is not set -# CONFIG_CMDLINE_PARTITION is not set -# end of Partition Types - -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -CONFIG_IOSCHED_BFQ=y -# end of IO Schedulers - -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_HAS_MMIOWB=y -CONFIG_MMIOWB=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUG is not set -# CONFIG_CMA_DEBUGFS is not set -# CONFIG_CMA_SYSFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -CONFIG_IP_ADVANCED_ROUTER=y -# CONFIG_IP_FIB_TRIE_STATS is not set -CONFIG_IP_MULTIPLE_TABLES=y -# CONFIG_IP_ROUTE_MULTIPATH is not set -# CONFIG_IP_ROUTE_VERBOSE is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=y -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -CONFIG_IPV6_MULTIPLE_TABLES=y -# CONFIG_IPV6_SUBTREES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -# CONFIG_NET_SCH_MULTIQ is not set -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_TAPRIO is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -# CONFIG_NET_SCH_MQPRIO is not set -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -CONFIG_NET_SCH_FQ_CODEL=y -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_ETS is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -# CONFIG_NET_CLS_BASIC is not set -# CONFIG_NET_CLS_TCINDEX is not set -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -# CONFIG_NET_CLS_U32 is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -# CONFIG_NET_CLS_CGROUP is not set -# CONFIG_NET_CLS_BPF is not set -# CONFIG_NET_CLS_FLOWER is not set -# CONFIG_NET_CLS_MATCHALL is not set -# CONFIG_NET_EMATCH is not set -# CONFIG_NET_CLS_ACT is not set -CONFIG_NET_SCH_FIFO=y -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -CONFIG_WIRELESS=y -CONFIG_CFG80211=y -# CONFIG_NL80211_TESTMODE is not set -# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set -# CONFIG_CFG80211_CERTIFICATION_ONUS is not set -CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y -CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y -# CONFIG_CFG80211_DEFAULT_PS is not set -# CONFIG_CFG80211_DEBUGFS is not set -CONFIG_CFG80211_CRDA_SUPPORT=y -# CONFIG_CFG80211_WEXT is not set -# CONFIG_MAC80211 is not set -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -CONFIG_RFKILL=y -CONFIG_RFKILL_LEDS=y -# CONFIG_RFKILL_INPUT is not set -# CONFIG_RFKILL_GPIO is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="regulatory.db regulatory.db.p7s brcm/brcmfmac43430-sdio.bin brcm/brcmfmac43430-sdio.clm_blob brcm/brcmfmac43430-sdio.beagle,beaglev-starlight-jh7100.txt" -CONFIG_EXTRA_FIRMWARE_DIR="firmware" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MOXTET is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -CONFIG_MTD_OF_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# -# NAND -# -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# ECC engine support -# -# CONFIG_MTD_NAND_ECC_SW_HAMMING is not set -# CONFIG_MTD_NAND_ECC_SW_BCH is not set -# end of ECC engine support -# end of NAND - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set -# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set -CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y -# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=1 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -CONFIG_BLK_DEV_NBD=y -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# NVME Support -# -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TCP is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_HISI_HIKEY_USB is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_PROC_FS is not set - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -CONFIG_CHR_DEV_SG=y -# CONFIG_CHR_DEV_SCH is not set -CONFIG_SCSI_CONSTANTS=y -# CONFIG_SCSI_LOGGING is not set -CONFIG_SCSI_SCAN_ASYNC=y - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -CONFIG_WIREGUARD=y -# CONFIG_WIREGUARD_DEBUG is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -CONFIG_TUN=y -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_ALACRITECH=y -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -CONFIG_NET_VENDOR_AQUANTIA=y -CONFIG_NET_VENDOR_ARC=y -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_SYSTEMPORT is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_GEMINI_ETHERNET is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_GOOGLE=y -CONFIG_NET_VENDOR_HUAWEI=y -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -CONFIG_NET_VENDOR_MICROSOFT=y -CONFIG_NET_VENDOR_MARVELL=y -# CONFIG_MVMDIO is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -CONFIG_NET_VENDOR_MICREL=y -# CONFIG_KS8842 is not set -# CONFIG_KS8851 is not set -# CONFIG_KS8851_MLL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_ENC28J60 is not set -# CONFIG_ENCX24J600 is not set -CONFIG_NET_VENDOR_MICROSEMI=y -CONFIG_NET_VENDOR_NATSEMI=y -CONFIG_NET_VENDOR_NETRONOME=y -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_8390=y -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PENSANDO=y -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000_SPI is not set -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -CONFIG_NET_VENDOR_SEEQ=y -CONFIG_NET_VENDOR_SOLARFLARE=y -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -# CONFIG_DWMAC_INTEL_PLAT is not set -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -CONFIG_NET_VENDOR_VIA=y -# CONFIG_VIA_VELOCITY is not set -CONFIG_NET_VENDOR_WIZNET=y -# CONFIG_WIZNET_W5100 is not set -# CONFIG_WIZNET_W5300 is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_EMACLITE is not set -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -# CONFIG_LED_TRIGGER_PHY is not set -CONFIG_FIXED_PHY=y -# CONFIG_SFP is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MARVELL_88X2222_PHY is not set -CONFIG_MICREL_PHY=y -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_C45_TJA11XX_PHY is not set -# CONFIG_NXP_TJA11XX_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set - -# -# MDIO Multiplexers -# -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set - -# -# PCS device drivers -# -CONFIG_PCS_XPCS=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_HSO is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH6KL is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_BRCMUTIL=y -CONFIG_BRCMFMAC=y -CONFIG_BRCMFMAC_PROTO_BCDC=y -CONFIG_BRCMFMAC_SDIO=y -# CONFIG_BRCMFMAC_USB is not set -# CONFIG_BRCM_TRACING is not set -# CONFIG_BRCMDBG is not set -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -CONFIG_WLAN_VENDOR_MARVELL=y -# CONFIG_LIBERTAS is not set -# CONFIG_MWIFIEX is not set -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_MICROCHIP=y -# CONFIG_WILC1000_SDIO is not set -# CONFIG_WILC1000_SPI is not set -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -# CONFIG_USB_ZD1201 is not set -CONFIG_WLAN_VENDOR_QUANTENNA=y -# CONFIG_USB_NET_RNDIS_WLAN is not set -# CONFIG_VIRT_WIFI is not set -# CONFIG_WAN is not set -# CONFIG_WWAN is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_OF_PLATFORM is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_RISCV_SBI is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -CONFIG_SERIAL_SIFIVE=y -CONFIG_SERIAL_SIFIVE_CONSOLE=y -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_HVC_RISCV_SBI is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_STARFIVE_VIC=y -# CONFIG_HW_RANDOM_CCTRNG is not set -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_DEVMEM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -# CONFIG_I2C_MUX_PCA954x is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -CONFIG_I2C_DESIGNWARE_CORE=y -# CONFIG_I2C_DESIGNWARE_SLAVE is not set -CONFIG_I2C_DESIGNWARE_PLATFORM=y -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -CONFIG_SPI_CADENCE_QUADSPI=y -CONFIG_SPI_DESIGNWARE=y -CONFIG_SPI_DW_DMA=y -CONFIG_SPI_DW_MMIO=y -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=256 -CONFIG_OF_GPIO=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -# CONFIG_GPIO_CDEV_V1 is not set - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -CONFIG_GPIO_STARFIVE_JH7100=y -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -CONFIG_GPIO_TPS65086=y -# end of MFD GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -CONFIG_POWER_RESET=y -# CONFIG_POWER_RESET_GPIO is not set -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_RESTART is not set -CONFIG_POWER_RESET_TPS65086=y -# CONFIG_POWER_RESET_SYSCON is not set -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -# CONFIG_SYSCON_REBOOT_MODE is not set -# CONFIG_NVMEM_REBOOT_MODE is not set -# CONFIG_POWER_SUPPLY is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2947_SPI is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_PWM_FAN is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SFCTEMP is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_NTXEC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -CONFIG_MFD_TPS65086=y -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_ROHM_BD957XMUF is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# CONFIG_MFD_ATC260X_I2C is not set -# CONFIG_MFD_INTEL_M10_BMC is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_DRM=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -# CONFIG_DRM_DEBUG_MM is not set -# CONFIG_DRM_DEBUG_SELFTEST is not set -CONFIG_DRM_KMS_HELPER=y -CONFIG_DRM_KMS_FB_HELPER=y -# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_FBDEV_OVERALLOC=100 -# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set -# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set -# CONFIG_DRM_DP_CEC is not set - -# -# I2C encoder or helper chips -# -# CONFIG_DRM_I2C_CH7006 is not set -# CONFIG_DRM_I2C_SIL164 is not set -# CONFIG_DRM_I2C_NXP_TDA998X is not set -# CONFIG_DRM_I2C_NXP_TDA9950 is not set -# end of I2C encoder or helper chips - -# -# ARM devices -# -# CONFIG_DRM_KOMEDA is not set -# end of ARM devices - -# CONFIG_DRM_VGEM is not set -# CONFIG_DRM_VKMS is not set -# CONFIG_DRM_UDL is not set -# CONFIG_DRM_RCAR_DW_HDMI is not set -# CONFIG_DRM_RCAR_LVDS is not set -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set -# CONFIG_DRM_PANEL_ARM_VERSATILE is not set -# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LB035Q02 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# end of Display Panels - -CONFIG_DRM_BRIDGE=y -CONFIG_DRM_PANEL_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_CDNS_DSI is not set -# CONFIG_DRM_CHIPONE_ICN6211 is not set -# CONFIG_DRM_CHRONTEL_CH7033 is not set -# CONFIG_DRM_DISPLAY_CONNECTOR is not set -# CONFIG_DRM_LONTIUM_LT8912B is not set -# CONFIG_DRM_LONTIUM_LT9611 is not set -# CONFIG_DRM_LONTIUM_LT9611UXC is not set -# CONFIG_DRM_LVDS_CODEC is not set -# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set -# CONFIG_DRM_NWL_MIPI_DSI is not set -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_PARADE_PS8640 is not set -# CONFIG_DRM_SIL_SII8620 is not set -# CONFIG_DRM_SII902X is not set -# CONFIG_DRM_SII9234 is not set -# CONFIG_DRM_SIMPLE_BRIDGE is not set -# CONFIG_DRM_THINE_THC63LVD1024 is not set -# CONFIG_DRM_TOSHIBA_TC358762 is not set -# CONFIG_DRM_TOSHIBA_TC358764 is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_TOSHIBA_TC358768 is not set -# CONFIG_DRM_TOSHIBA_TC358775 is not set -# CONFIG_DRM_TI_TFP410 is not set -# CONFIG_DRM_TI_SN65DSI86 is not set -# CONFIG_DRM_TI_TPD12S015 is not set -# CONFIG_DRM_ANALOGIX_ANX6345 is not set -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_ANALOGIX_ANX7625 is not set -# CONFIG_DRM_I2C_ADV7511 is not set -# CONFIG_DRM_CDNS_MHDP8546 is not set -# end of Display Interface Bridges - -# CONFIG_DRM_ETNAVIV is not set -# CONFIG_DRM_MXSFB is not set -# CONFIG_DRM_ARCPGU is not set -# CONFIG_DRM_GM12U320 is not set -# CONFIG_TINYDRM_HX8357D is not set -# CONFIG_TINYDRM_ILI9225 is not set -# CONFIG_TINYDRM_ILI9341 is not set -# CONFIG_TINYDRM_ILI9486 is not set -# CONFIG_TINYDRM_MI0283QT is not set -# CONFIG_TINYDRM_REPAPER is not set -# CONFIG_TINYDRM_ST7586 is not set -# CONFIG_TINYDRM_ST7735R is not set -# CONFIG_DRM_GUD is not set -# CONFIG_DRM_LEGACY is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_EFI is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -CONFIG_FB_STARFIVE=y -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set - -# -# Displayer Configuration for VIC board -# -# CONFIG_FB_STARFIVE_HDMI_ADV7513 is not set -CONFIG_FB_STARFIVE_HDMI_TDA998X=y -# CONFIG_FB_STARFIVE_SEEED5INCH is not set -# end of Displayer Configuration for VIC board -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_HDMI=y - -# -# Console display driver support -# -# CONFIG_VGA_CONSOLE is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_OF is not set -# CONFIG_I2C_HID_OF_GOODIX is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -CONFIG_USB_MON=y - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -# CONFIG_USB_EHCI_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -CONFIG_USB_CDNS_SUPPORT=y -CONFIG_USB_CDNS_HOST=y -CONFIG_USB_CDNS3=y -CONFIG_USB_CDNS3_HOST=y -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -CONFIG_USB_ROLE_SWITCH=y -CONFIG_MMC=y -# CONFIG_PWRSEQ_EMMC is not set -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SPI is not set -CONFIG_MMC_DW=y -CONFIG_MMC_DW_PLTFM=y -# CONFIG_MMC_DW_BLUEFIELD is not set -# CONFIG_MMC_DW_EXYNOS is not set -# CONFIG_MMC_DW_HI3798CV200 is not set -# CONFIG_MMC_DW_K3 is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_AW2013 is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_EL15203000 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP50XX is not set -# CONFIG_LEDS_LP55XX_COMMON is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_SYSCON is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_MTD is not set -CONFIG_LEDS_TRIGGER_HEARTBEAT=y -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_SUPPORT=y -# CONFIG_RTC_CLASS is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DW_AXI_DMAC=y -CONFIG_DW_AXI_DMAC_STARFIVE=y -# CONFIG_FSL_EDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_SF_PDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_DEBUG is not set -# CONFIG_DMABUF_SELFTESTS is not set -CONFIG_DMABUF_HEAPS=y -CONFIG_DMABUF_HEAPS_SYSTEM=y -# CONFIG_DMABUF_HEAPS_CMA is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_AXI_CLKGEN is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_ANALOGBITS_WRPLL_CLN28HPC=y -CONFIG_CLK_SIFIVE=y -CONFIG_CLK_SIFIVE_PRCI=y -CONFIG_CLK_STARFIVE_JH7100=y -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_RISCV_TIMER=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# CONFIG_LITEX_SOC_CONTROLLER is not set -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SIFIVE_L2=y -CONFIG_SIFIVE_L2_FLUSH=y -CONFIG_SIFIVE_L2_FLUSH_START=0x80000000 -CONFIG_SIFIVE_L2_FLUSH_SIZE=0x800000000 -CONFIG_SIFIVE_L2_IRQ_DISABLE=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_ATMEL_TCB is not set -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set -# CONFIG_PWM_SIFIVE is not set -CONFIG_PWM_SIFIVE_PTC=y - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -# CONFIG_AL_FIC is not set -CONFIG_RISCV_INTC=y -CONFIG_SIFIVE_PLIC=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_BRCMSTB_RESCAL is not set -# CONFIG_RESET_INTEL_GW is not set -CONFIG_RESET_SIMPLE=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_NVDLA is not set -# end of Device Drivers - -# -# File systems -# -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -CONFIG_EXT4_FS_POSIX_ACL=y -CONFIG_EXT4_FS_SECURITY=y -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -CONFIG_BTRFS_FS=y -CONFIG_BTRFS_FS_POSIX_ACL=y -# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set -# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set -# CONFIG_BTRFS_DEBUG is not set -# CONFIG_BTRFS_ASSERT is not set -# CONFIG_BTRFS_FS_REF_VERIFY is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -# CONFIG_MANDATORY_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -# CONFIG_DNOTIFY is not set -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_AUTOFS_FS=y -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-15" -CONFIG_FAT_DEFAULT_UTF8=y -CONFIG_EXFAT_FS=y -CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_ARCH_SUPPORTS_HUGETLBFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=y -CONFIG_NFS_V2=y -CONFIG_NFS_V3=y -# CONFIG_NFS_V3_ACL is not set -# CONFIG_NFS_V4 is not set -# CONFIG_NFS_SWAP is not set -CONFIG_ROOT_NFS=y -CONFIG_NFS_DISABLE_UDP_SUPPORT=y -# CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=y -CONFIG_LOCKD=y -CONFIG_LOCKD_V4=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=y -# CONFIG_SUNRPC_DEBUG is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -CONFIG_NLS_ISO8859_15=y -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_KEY_NOTIFICATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_XOR_BLOCKS=y -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -CONFIG_CRYPTO_XXHASH=y -CONFIG_CRYPTO_BLAKE2B=y -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_SHA1 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y -CONFIG_CRYPTO_LIB_BLAKE2S=y -CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y -CONFIG_CRYPTO_LIB_CHACHA=y -CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=y -CONFIG_CRYPTO_LIB_CURVE25519=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 -CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y -CONFIG_CRYPTO_LIB_POLY1305=y -CONFIG_CRYPTO_LIB_CHACHA20POLY1305=y -CONFIG_CRYPTO_LIB_SHA256=y -# CONFIG_CRYPTO_HW is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y -# CONFIG_PKCS7_TEST_KEY is not set -# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_RAID6_PQ=y -# CONFIG_RAID6_PQ_BENCHMARK is not set -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -CONFIG_LIBCRC32C=y -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_ZSTD_COMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_ZSTD=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y -CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y -CONFIG_SWIOTLB=y -CONFIG_DMA_CMA=y -# CONFIG_DMA_PERNUMA_CMA is not set - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=16 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -# CONFIG_IRQ_POLL is not set -CONFIG_MPILIB=y -CONFIG_LIBFDT=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -CONFIG_GENERIC_IOREMAP=y -CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -CONFIG_HAVE_ARCH_KGDB_QXFER_PKT=y -# CONFIG_KGDB is not set -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -CONFIG_WQ_WATCHDOG=y -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set - -# -# riscv Debugging -# - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/seeed/beaglev/flash-5.14.esmil.config b/mainboards/seeed/beaglev/flash-5.14.esmil.config deleted file mode 100644 index 7c667816..00000000 --- a/mainboards/seeed/beaglev/flash-5.14.esmil.config +++ /dev/null @@ -1,1754 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/riscv 5.14.0-rc2 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="riscv64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23601 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23601 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y - -# -# BPF subsystem -# -# CONFIG_BPF_SYSCALL is not set -# end of BPF subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_FORCE=y -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -# CONFIG_BUG is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_USERFAULTFD is not set -# CONFIG_KCMP is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -# CONFIG_PERF_EVENTS is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_RISCV=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=24 -CONFIG_RISCV_SBI=y -CONFIG_MMU=y -CONFIG_VA_BITS=39 -CONFIG_PA_BITS=56 -CONFIG_PAGE_OFFSET=0xffffffe000000000 -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=3 -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_RISCV_UNCACHED_OFFSET=0xF80000000 -CONFIG_RISCV_DMA_NONCOHERENT=y - -# -# SoC selection -# -# CONFIG_SOC_MICROCHIP_POLARFIRE is not set -CONFIG_SOC_SIFIVE=y -CONFIG_SOC_STARFIVE_VIC7100=y -# CONFIG_SOC_VIRT is not set -# end of SoC selection - -# -# CPU errata selection -# -CONFIG_RISCV_ERRATA_ALTERNATIVE=y -CONFIG_ERRATA_SIFIVE=y -CONFIG_ERRATA_SIFIVE_CIP_453=y -CONFIG_ERRATA_SIFIVE_CIP_1200=y -# end of CPU errata selection - -# -# Platform type -# -# CONFIG_ARCH_RV32I is not set -CONFIG_ARCH_RV64I=y -# CONFIG_CMODEL_MEDLOW is not set -CONFIG_CMODEL_MEDANY=y -CONFIG_MAXPHYSMEM_128GB=y -# CONFIG_SMP is not set -CONFIG_TUNE_GENERIC=y -CONFIG_RISCV_ISA_C=y -CONFIG_FPU=y -# end of Platform type - -# -# Kernel features -# -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_RISCV_SBI_V01=y -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -# end of Kernel features - -# -# Boot options -# -CONFIG_CMDLINE="nosmp console=ttyS0,115200 debug rootwait earlycon=sbi,keep ip=dhcp stmmac.chain_mode=1" -# CONFIG_CMDLINE_FALLBACK is not set -# CONFIG_CMDLINE_EXTEND is not set -CONFIG_CMDLINE_FORCE=y -# CONFIG_EFI is not set -CONFIG_PHYS_RAM_BASE=0x80000000 -# end of Boot options - -# -# Power management options -# -# CONFIG_PM is not set -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# -# General architecture-dependent options -# -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_ARCH_HAS_DMA_SET_UNCACHED=y -CONFIG_ARCH_HAS_DMA_CLEAR_UNCACHED=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -# CONFIG_SECCOMP is not set -CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_LTO_NONE=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -# CONFIG_STRICT_KERNEL_RWX is not set -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_HAS_MMIOWB=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ZONE_DMA32=y -# CONFIG_PERCPU_STATS is not set - -# -# GUP_TEST needs to have DEBUG_FS enabled -# -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -# CONFIG_PACKET is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_NET_SELFTESTS=y -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -# CONFIG_ETHTOOL_NETLINK is not set - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_DYNAMIC=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -# CONFIG_PARPORT is not set - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_MAX6875 is not set -CONFIG_EEPROM_93CX6=y -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -CONFIG_TI_ST=y -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_ECHO is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_NET_VENDOR_MICROSOFT is not set -# CONFIG_NET_VENDOR_MARVELL is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -# CONFIG_DWMAC_INTEL_PLAT is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_FIXED_PHY=y -# CONFIG_SFP is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -CONFIG_MICREL_PHY=y -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_MOTORCOMM_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_C45_TJA11XX_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set - -# -# MDIO Multiplexers -# -CONFIG_MDIO_BUS_MUX=y -CONFIG_MDIO_BUS_MUX_GPIO=y -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set - -# -# PCS device drivers -# -CONFIG_PCS_XPCS=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_16550A_VARIANTS=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_DMA is not set -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_OF_PLATFORM is not set - -# -# Non-8250 serial port support -# -CONFIG_SERIAL_EARLYCON_RISCV_SBI=y -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -CONFIG_SERIAL_SIFIVE=y -CONFIG_SERIAL_SIFIVE_CONSOLE=y -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_HVC_RISCV_SBI is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_DEVMEM is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -CONFIG_I2C_ARB_GPIO_CHALLENGE=y -CONFIG_I2C_MUX_GPIO=y -CONFIG_I2C_MUX_GPMUX=y -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -# CONFIG_I2C_MUX_PCA954x is not set -CONFIG_I2C_MUX_PINCTRL=y -CONFIG_I2C_MUX_REG=y -CONFIG_I2C_DEMUX_PINCTRL=y -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -# CONFIG_I2C_HELPER_AUTO is not set -CONFIG_I2C_SMBUS=y - -# -# I2C Algorithms -# -# CONFIG_I2C_ALGOBIT is not set -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -CONFIG_I2C_DESIGNWARE_CORE=y -# CONFIG_I2C_DESIGNWARE_SLAVE is not set -CONFIG_I2C_DESIGNWARE_PLATFORM=y -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -CONFIG_I2C_DEBUG_ALGO=y -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_GENERIC_PINCTRL_GROUPS=y -CONFIG_PINMUX=y -CONFIG_GENERIC_PINMUX_FUNCTIONS=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -CONFIG_DEBUG_PINCTRL=y -# CONFIG_PINCTRL_MCP23S08 is not set -CONFIG_PINCTRL_SINGLE=y -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_STARFIVE=y -# CONFIG_PINCTRL_STMFX is not set -# CONFIG_PINCTRL_OCELOT is not set -# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y -CONFIG_GPIO_GENERIC=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -CONFIG_GPIO_DWAPB=y -# CONFIG_GPIO_FTGPIO010 is not set -CONFIG_GPIO_GENERIC_PLATFORM=y -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -CONFIG_GPIO_SIFIVE=y -CONFIG_GPIO_SYSCON=y -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -CONFIG_GPIO_TPS65086=y -# end of MFD GPIO expanders - -# -# Virtual GPIO drivers -# -CONFIG_GPIO_AGGREGATOR=y -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -CONFIG_POWER_RESET=y -# CONFIG_POWER_RESET_GPIO is not set -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_REGULATOR is not set -# CONFIG_POWER_RESET_RESTART is not set -CONFIG_POWER_RESET_TPS65086=y -# CONFIG_POWER_RESET_SYSCON is not set -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -# CONFIG_SYSCON_REBOOT_MODE is not set -# CONFIG_NVMEM_REBOOT_MODE is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_NTXEC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RT4831 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -CONFIG_MFD_TPS65086=y -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_ROHM_BD957XMUF is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# CONFIG_MFD_ATC260X_I2C is not set -# CONFIG_MFD_QCOM_PM8008 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9121 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_FAN53880 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8893 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MP5416 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MP886X is not set -# CONFIG_REGULATOR_MPQ7920 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PF8X00 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RT6160 is not set -# CONFIG_REGULATOR_RT6245 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_SY8827N is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -CONFIG_REGULATOR_TPS65086=y -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_VCTRL is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set - -# -# Displayer Configuration for VIC board -# -# end of Displayer Configuration for VIC board -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_SUPPORT=y -# CONFIG_RTC_CLASS is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DW_AXI_DMAC=y -CONFIG_DW_AXI_DMAC_STARFIVE=y -# CONFIG_FSL_EDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -CONFIG_DW_DMAC_CORE=y -CONFIG_DW_DMAC=y -CONFIG_SF_PDMA=y - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_DEBUG is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Clock driver for ARM Reference designs -# -# CONFIG_ICST is not set -# CONFIG_CLK_SP810 is not set -# end of Clock driver for ARM Reference designs - -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_AXI_CLKGEN is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_ANALOGBITS_WRPLL_CLN28HPC=y -CONFIG_CLK_SIFIVE=y -CONFIG_CLK_SIFIVE_PRCI=y -CONFIG_CLK_STARFIVE_JH7100=y -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_RISCV_TIMER=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# CONFIG_LITEX_SOC_CONTROLLER is not set -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SIFIVE_L2=y -CONFIG_SIFIVE_L2_FLUSH=y -CONFIG_SIFIVE_L2_FLUSH_START=0x80000000 -CONFIG_SIFIVE_L2_FLUSH_SIZE=0x800000000 -CONFIG_SIFIVE_L2_IRQ_DISABLE=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -# CONFIG_AL_FIC is not set -CONFIG_RISCV_INTC=y -CONFIG_SIFIVE_PLIC=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_MCHP_SPARX5 is not set -CONFIG_RESET_SIMPLE=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_PHY_CAN_TRANSCEIVER is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -CONFIG_MULTIPLEXER=y - -# -# Multiplexer drivers -# -# CONFIG_MUX_ADG792A is not set -# CONFIG_MUX_GPIO is not set -# CONFIG_MUX_MMIO is not set -# end of Multiplexer drivers - -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -# CONFIG_SYSFS is not set -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -# CONFIG_TMPFS_XATTR is not set -# CONFIG_TMPFS_INODE64 is not set -CONFIG_ARCH_SUPPORTS_HUGETLBFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -# CONFIG_NLS is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,integrity,bpf" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -# CONFIG_CRYPTO is not set - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y -CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -CONFIG_GENERIC_IOREMAP=y -CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_ARCH_WANT_FRAME_POINTERS=y -# CONFIG_FRAME_POINTER is not set -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -CONFIG_HAVE_ARCH_KGDB_QXFER_PKT=y -# CONFIG_KGDB is not set -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_HAVE_ARCH_KFENCE=y -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set - -# -# riscv Debugging -# - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/seeed/beaglev/flash.config b/mainboards/seeed/beaglev/flash.config deleted file mode 100644 index 3a5a4561..00000000 --- a/mainboards/seeed/beaglev/flash.config +++ /dev/null @@ -1,3237 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/riscv 5.13.0-rc2 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-starlight" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_WATCH_QUEUE=y -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set -CONFIG_PSI=y -# CONFIG_PSI_DEFAULT_DISABLED is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -# CONFIG_MEMCG is not set -# CONFIG_BLK_CGROUP is not set -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_DEVICE is not set -CONFIG_CGROUP_CPUACCT=y -# CONFIG_CGROUP_PERF is not set -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_INITRAMFS_FORCE is not set -CONFIG_RD_GZIP=y -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_RD_ZSTD=y -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_BPF_SYSCALL=y -# CONFIG_BPF_PRELOAD is not set -CONFIG_USERFAULTFD=y -CONFIG_KCMP=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_SLUB_DEBUG is not set -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SHUFFLE_PAGE_ALLOCATOR=y -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_SYSTEM_DATA_VERIFICATION=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_RISCV=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=24 -CONFIG_RISCV_SBI=y -CONFIG_MMU=y -CONFIG_ZONE_DMA32=y -CONFIG_VA_BITS=39 -CONFIG_PA_BITS=56 -CONFIG_PAGE_OFFSET=0xffffffe000000000 -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=3 -CONFIG_LOCKDEP_SUPPORT=y - -# -# SoC selection -# -# CONFIG_SOC_MICROCHIP_POLARFIRE is not set -CONFIG_SOC_SIFIVE=y -CONFIG_SOC_STARFIVE_VIC7100=y - -# -# StarFive VIC7100 SoC Debug Option -# -CONFIG_FPGA_GMAC_FLUSH_DDR=y -CONFIG_MMC_DW_FLUSH_DDR=y -CONFIG_USB_CDNS3_HOST_FLUSH_DMA=y -CONFIG_SOC_STARFIVE_VIC7100_I2C_GPIO=y -# end of StarFive VIC7100 SoC Debug Option - -# CONFIG_SOC_VIRT is not set -# end of SoC selection - -# -# CPU errata selection -# -CONFIG_RISCV_ERRATA_ALTERNATIVE=y -CONFIG_ERRATA_SIFIVE=y -CONFIG_ERRATA_SIFIVE_CIP_453=y -CONFIG_ERRATA_SIFIVE_CIP_1200=y -# end of CPU errata selection - -# -# Platform type -# -# CONFIG_ARCH_RV32I is not set -CONFIG_ARCH_RV64I=y -# CONFIG_CMODEL_MEDLOW is not set -CONFIG_CMODEL_MEDANY=y -CONFIG_MAXPHYSMEM_128GB=y -CONFIG_SMP=y -CONFIG_NR_CPUS=4 -# CONFIG_HOTPLUG_CPU is not set -CONFIG_TUNE_GENERIC=y -# CONFIG_NUMA is not set -CONFIG_RISCV_ISA_C=y - -# -# supported PMU type -# -CONFIG_RISCV_BASE_PMU=y -# end of supported PMU type - -CONFIG_FPU=y -# end of Platform type - -# -# Kernel features -# -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_RISCV_SBI_V01=y -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -# end of Kernel features - -# -# Boot options -# -CONFIG_CMDLINE="console=ttyS0,115200 debug rootwait earlycon=sbi ip=dhcp stmmac.chain_mode=1" -# CONFIG_CMDLINE_FALLBACK is not set -# CONFIG_CMDLINE_EXTEND is not set -CONFIG_CMDLINE_FORCE=y -CONFIG_EFI_STUB=y -CONFIG_EFI=y -# CONFIG_PHYS_RAM_BASE_FIXED is not set -# end of Boot options - -# -# Power management options -# -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_ESRT=y -CONFIG_EFI_PARAMS_FROM_FDT=y -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_LTO_NONE=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -CONFIG_BLK_WBT=y -CONFIG_BLK_WBT_MQ=y -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -CONFIG_PARTITION_ADVANCED=y -# CONFIG_ACORN_PARTITION is not set -# CONFIG_AIX_PARTITION is not set -# CONFIG_OSF_PARTITION is not set -# CONFIG_AMIGA_PARTITION is not set -# CONFIG_ATARI_PARTITION is not set -# CONFIG_MAC_PARTITION is not set -CONFIG_MSDOS_PARTITION=y -# CONFIG_BSD_DISKLABEL is not set -# CONFIG_MINIX_SUBPARTITION is not set -# CONFIG_SOLARIS_X86_PARTITION is not set -# CONFIG_UNIXWARE_DISKLABEL is not set -# CONFIG_LDM_PARTITION is not set -# CONFIG_SGI_PARTITION is not set -# CONFIG_ULTRIX_PARTITION is not set -# CONFIG_SUN_PARTITION is not set -# CONFIG_KARMA_PARTITION is not set -CONFIG_EFI_PARTITION=y -# CONFIG_SYSV68_PARTITION is not set -# CONFIG_CMDLINE_PARTITION is not set -# end of Partition Types - -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -CONFIG_IOSCHED_BFQ=y -# end of IO Schedulers - -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_HAS_MMIOWB=y -CONFIG_MMIOWB=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUG is not set -# CONFIG_CMA_DEBUGFS is not set -# CONFIG_CMA_SYSFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -CONFIG_IP_ADVANCED_ROUTER=y -# CONFIG_IP_FIB_TRIE_STATS is not set -CONFIG_IP_MULTIPLE_TABLES=y -# CONFIG_IP_ROUTE_MULTIPATH is not set -# CONFIG_IP_ROUTE_VERBOSE is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=y -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -CONFIG_IPV6_MULTIPLE_TABLES=y -# CONFIG_IPV6_SUBTREES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -# CONFIG_NET_SCH_MULTIQ is not set -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_TAPRIO is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -# CONFIG_NET_SCH_MQPRIO is not set -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -CONFIG_NET_SCH_FQ_CODEL=y -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_ETS is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -# CONFIG_NET_CLS_BASIC is not set -# CONFIG_NET_CLS_TCINDEX is not set -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -# CONFIG_NET_CLS_U32 is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -# CONFIG_NET_CLS_CGROUP is not set -# CONFIG_NET_CLS_BPF is not set -# CONFIG_NET_CLS_FLOWER is not set -# CONFIG_NET_CLS_MATCHALL is not set -# CONFIG_NET_EMATCH is not set -# CONFIG_NET_CLS_ACT is not set -CONFIG_NET_SCH_FIFO=y -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -CONFIG_WIRELESS=y -CONFIG_CFG80211=y -# CONFIG_NL80211_TESTMODE is not set -# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set -# CONFIG_CFG80211_CERTIFICATION_ONUS is not set -CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y -CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y -# CONFIG_CFG80211_DEFAULT_PS is not set -# CONFIG_CFG80211_DEBUGFS is not set -CONFIG_CFG80211_CRDA_SUPPORT=y -# CONFIG_CFG80211_WEXT is not set -# CONFIG_MAC80211 is not set -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -CONFIG_RFKILL=y -CONFIG_RFKILL_LEDS=y -# CONFIG_RFKILL_INPUT is not set -# CONFIG_RFKILL_GPIO is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="regulatory.db regulatory.db.p7s brcm/brcmfmac43430-sdio.bin brcm/brcmfmac43430-sdio.clm_blob brcm/brcmfmac43430-sdio.beagle,beaglev-starlight-jh7100.txt" -CONFIG_EXTRA_FIRMWARE_DIR="firmware" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MOXTET is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -CONFIG_MTD_OF_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# -# NAND -# -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# ECC engine support -# -# CONFIG_MTD_NAND_ECC_SW_HAMMING is not set -# CONFIG_MTD_NAND_ECC_SW_BCH is not set -# end of ECC engine support -# end of NAND - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set -# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set -CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y -# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=1 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -CONFIG_BLK_DEV_NBD=y -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# NVME Support -# -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_HISI_HIKEY_USB is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_PROC_FS is not set - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -CONFIG_CHR_DEV_SG=y -# CONFIG_CHR_DEV_SCH is not set -CONFIG_SCSI_CONSTANTS=y -# CONFIG_SCSI_LOGGING is not set -CONFIG_SCSI_SCAN_ASYNC=y - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -CONFIG_WIREGUARD=y -# CONFIG_WIREGUARD_DEBUG is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -CONFIG_TUN=y -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_ALACRITECH=y -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -CONFIG_NET_VENDOR_AQUANTIA=y -CONFIG_NET_VENDOR_ARC=y -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_SYSTEMPORT is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_GEMINI_ETHERNET is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_GOOGLE=y -CONFIG_NET_VENDOR_HUAWEI=y -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -CONFIG_NET_VENDOR_MICROSOFT=y -CONFIG_NET_VENDOR_MARVELL=y -# CONFIG_MVMDIO is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -CONFIG_NET_VENDOR_MICREL=y -# CONFIG_KS8842 is not set -# CONFIG_KS8851 is not set -# CONFIG_KS8851_MLL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_ENC28J60 is not set -# CONFIG_ENCX24J600 is not set -CONFIG_NET_VENDOR_MICROSEMI=y -CONFIG_NET_VENDOR_NATSEMI=y -CONFIG_NET_VENDOR_NETRONOME=y -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_8390=y -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PENSANDO=y -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000_SPI is not set -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -CONFIG_NET_VENDOR_SEEQ=y -CONFIG_NET_VENDOR_SOLARFLARE=y -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -# CONFIG_DWMAC_INTEL_PLAT is not set -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -CONFIG_NET_VENDOR_VIA=y -# CONFIG_VIA_VELOCITY is not set -CONFIG_NET_VENDOR_WIZNET=y -# CONFIG_WIZNET_W5100 is not set -# CONFIG_WIZNET_W5300 is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_EMACLITE is not set -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -# CONFIG_LED_TRIGGER_PHY is not set -CONFIG_FIXED_PHY=y -# CONFIG_SFP is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MARVELL_88X2222_PHY is not set -CONFIG_MICREL_PHY=y -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_C45_TJA11XX_PHY is not set -# CONFIG_NXP_TJA11XX_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set - -# -# MDIO Multiplexers -# -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set - -# -# PCS device drivers -# -CONFIG_PCS_XPCS=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_HSO is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH6KL is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_BRCMUTIL=y -CONFIG_BRCMFMAC=y -CONFIG_BRCMFMAC_PROTO_BCDC=y -CONFIG_BRCMFMAC_SDIO=y -# CONFIG_BRCMFMAC_USB is not set -# CONFIG_BRCM_TRACING is not set -# CONFIG_BRCMDBG is not set -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -CONFIG_WLAN_VENDOR_MARVELL=y -# CONFIG_LIBERTAS is not set -# CONFIG_MWIFIEX is not set -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_MICROCHIP=y -# CONFIG_WILC1000_SDIO is not set -# CONFIG_WILC1000_SPI is not set -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -# CONFIG_USB_ZD1201 is not set -CONFIG_WLAN_VENDOR_QUANTENNA=y -# CONFIG_USB_NET_RNDIS_WLAN is not set -# CONFIG_VIRT_WIFI is not set -# CONFIG_WAN is not set -# CONFIG_WWAN is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_OF_PLATFORM is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_RISCV_SBI is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -CONFIG_SERIAL_SIFIVE=y -CONFIG_SERIAL_SIFIVE_CONSOLE=y -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_HVC_RISCV_SBI is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_STARFIVE_VIC=y -# CONFIG_HW_RANDOM_CCTRNG is not set -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_DEVMEM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -# CONFIG_I2C_MUX_PCA954x is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -CONFIG_I2C_DESIGNWARE_CORE=y -# CONFIG_I2C_DESIGNWARE_SLAVE is not set -CONFIG_I2C_DESIGNWARE_PLATFORM=y -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_ALTERA_CORE is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -CONFIG_SPI_CADENCE_QUADSPI=y -CONFIG_SPI_DESIGNWARE=y -CONFIG_SPI_DW_DMA=y -CONFIG_SPI_DW_MMIO=y -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=256 -CONFIG_OF_GPIO=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -# CONFIG_GPIO_CDEV_V1 is not set - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -CONFIG_GPIO_STARFIVE_VIC=y -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -CONFIG_GPIO_TPS65086=y -# end of MFD GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -CONFIG_POWER_RESET=y -# CONFIG_POWER_RESET_GPIO is not set -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_RESTART is not set -CONFIG_POWER_RESET_TPS65086=y -# CONFIG_POWER_RESET_SYSCON is not set -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -# CONFIG_SYSCON_REBOOT_MODE is not set -# CONFIG_NVMEM_REBOOT_MODE is not set -# CONFIG_POWER_SUPPLY is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2947_SPI is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_PWM_FAN is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -CONFIG_SENSORS_SFCTMP=y -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_NTXEC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -CONFIG_MFD_TPS65086=y -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_ROHM_BD957XMUF is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# CONFIG_MFD_ATC260X_I2C is not set -# CONFIG_MFD_INTEL_M10_BMC is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_DRM=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -# CONFIG_DRM_DEBUG_MM is not set -# CONFIG_DRM_DEBUG_SELFTEST is not set -CONFIG_DRM_KMS_HELPER=y -CONFIG_DRM_KMS_FB_HELPER=y -# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_FBDEV_OVERALLOC=100 -# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set -# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set -# CONFIG_DRM_DP_CEC is not set - -# -# I2C encoder or helper chips -# -# CONFIG_DRM_I2C_CH7006 is not set -# CONFIG_DRM_I2C_SIL164 is not set -# CONFIG_DRM_I2C_NXP_TDA998X is not set -# CONFIG_DRM_I2C_NXP_TDA9950 is not set -# end of I2C encoder or helper chips - -# -# ARM devices -# -# CONFIG_DRM_KOMEDA is not set -# end of ARM devices - -# CONFIG_DRM_VGEM is not set -# CONFIG_DRM_VKMS is not set -# CONFIG_DRM_UDL is not set -# CONFIG_DRM_RCAR_DW_HDMI is not set -# CONFIG_DRM_RCAR_LVDS is not set -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set -# CONFIG_DRM_PANEL_ARM_VERSATILE is not set -# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LB035Q02 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# end of Display Panels - -CONFIG_DRM_BRIDGE=y -CONFIG_DRM_PANEL_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_CDNS_DSI is not set -# CONFIG_DRM_CHIPONE_ICN6211 is not set -# CONFIG_DRM_CHRONTEL_CH7033 is not set -# CONFIG_DRM_DISPLAY_CONNECTOR is not set -# CONFIG_DRM_LONTIUM_LT8912B is not set -# CONFIG_DRM_LONTIUM_LT9611 is not set -# CONFIG_DRM_LONTIUM_LT9611UXC is not set -# CONFIG_DRM_LVDS_CODEC is not set -# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set -# CONFIG_DRM_NWL_MIPI_DSI is not set -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_PARADE_PS8640 is not set -# CONFIG_DRM_SIL_SII8620 is not set -# CONFIG_DRM_SII902X is not set -# CONFIG_DRM_SII9234 is not set -# CONFIG_DRM_SIMPLE_BRIDGE is not set -# CONFIG_DRM_THINE_THC63LVD1024 is not set -# CONFIG_DRM_TOSHIBA_TC358762 is not set -# CONFIG_DRM_TOSHIBA_TC358764 is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_TOSHIBA_TC358768 is not set -# CONFIG_DRM_TOSHIBA_TC358775 is not set -# CONFIG_DRM_TI_TFP410 is not set -# CONFIG_DRM_TI_SN65DSI86 is not set -# CONFIG_DRM_TI_TPD12S015 is not set -# CONFIG_DRM_ANALOGIX_ANX6345 is not set -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_ANALOGIX_ANX7625 is not set -# CONFIG_DRM_I2C_ADV7511 is not set -# CONFIG_DRM_CDNS_MHDP8546 is not set -# end of Display Interface Bridges - -# CONFIG_DRM_ETNAVIV is not set -# CONFIG_DRM_MXSFB is not set -# CONFIG_DRM_ARCPGU is not set -# CONFIG_DRM_GM12U320 is not set -# CONFIG_TINYDRM_HX8357D is not set -# CONFIG_TINYDRM_ILI9225 is not set -# CONFIG_TINYDRM_ILI9341 is not set -# CONFIG_TINYDRM_ILI9486 is not set -# CONFIG_TINYDRM_MI0283QT is not set -# CONFIG_TINYDRM_REPAPER is not set -# CONFIG_TINYDRM_ST7586 is not set -# CONFIG_TINYDRM_ST7735R is not set -# CONFIG_DRM_GUD is not set -# CONFIG_DRM_LEGACY is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_EFI is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -CONFIG_FB_STARFIVE=y -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set - -# -# Displayer Configuration for VIC board -# -# CONFIG_FB_STARFIVE_HDMI_ADV7513 is not set -CONFIG_FB_STARFIVE_HDMI_TDA998X=y -# CONFIG_FB_STARFIVE_SEEED5INCH is not set -# end of Displayer Configuration for VIC board -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_HDMI=y - -# -# Console display driver support -# -# CONFIG_VGA_CONSOLE is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_OF is not set -# CONFIG_I2C_HID_OF_GOODIX is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -CONFIG_USB_MON=y - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -# CONFIG_USB_EHCI_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -CONFIG_USB_CDNS_SUPPORT=y -CONFIG_USB_CDNS_HOST=y -CONFIG_USB_CDNS3=y -CONFIG_USB_CDNS3_HOST=y -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -CONFIG_USB_ROLE_SWITCH=y -CONFIG_MMC=y -# CONFIG_PWRSEQ_EMMC is not set -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SPI is not set -CONFIG_MMC_DW=y -CONFIG_MMC_DW_PLTFM=y -# CONFIG_MMC_DW_BLUEFIELD is not set -# CONFIG_MMC_DW_EXYNOS is not set -# CONFIG_MMC_DW_HI3798CV200 is not set -# CONFIG_MMC_DW_K3 is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_AW2013 is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_EL15203000 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP50XX is not set -# CONFIG_LEDS_LP55XX_COMMON is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_SYSCON is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_MTD is not set -CONFIG_LEDS_TRIGGER_HEARTBEAT=y -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_SUPPORT=y -# CONFIG_RTC_CLASS is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DW_AXI_DMAC=y -CONFIG_DW_AXI_DMAC_STARFIVE=y -# CONFIG_FSL_EDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_SF_PDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_DEBUG is not set -# CONFIG_DMABUF_SELFTESTS is not set -CONFIG_DMABUF_HEAPS=y -CONFIG_DMABUF_HEAPS_SYSTEM=y -# CONFIG_DMABUF_HEAPS_CMA is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_AXI_CLKGEN is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_ANALOGBITS_WRPLL_CLN28HPC=y -CONFIG_CLK_SIFIVE=y -CONFIG_CLK_SIFIVE_PRCI=y -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_RISCV_TIMER=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# CONFIG_LITEX_SOC_CONTROLLER is not set -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SIFIVE_L2=y -CONFIG_SIFIVE_L2_FLUSH=y -CONFIG_SIFIVE_L2_FLUSH_START=0x80000000 -CONFIG_SIFIVE_L2_FLUSH_SIZE=0x800000000 -CONFIG_SIFIVE_L2_IRQ_DISABLE=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_ATMEL_TCB is not set -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set -# CONFIG_PWM_SIFIVE is not set -CONFIG_PWM_SIFIVE_PTC=y - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -# CONFIG_AL_FIC is not set -CONFIG_RISCV_INTC=y -CONFIG_SIFIVE_PLIC=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_BRCMSTB_RESCAL is not set -# CONFIG_RESET_INTEL_GW is not set -CONFIG_RESET_SIMPLE=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -CONFIG_EXT4_FS_POSIX_ACL=y -CONFIG_EXT4_FS_SECURITY=y -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -CONFIG_BTRFS_FS=y -CONFIG_BTRFS_FS_POSIX_ACL=y -# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set -# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set -# CONFIG_BTRFS_DEBUG is not set -# CONFIG_BTRFS_ASSERT is not set -# CONFIG_BTRFS_FS_REF_VERIFY is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -# CONFIG_MANDATORY_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -# CONFIG_DNOTIFY is not set -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_AUTOFS_FS=y -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_NETFS_SUPPORT is not set -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-15" -CONFIG_FAT_DEFAULT_UTF8=y -CONFIG_EXFAT_FS=y -CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_ARCH_SUPPORTS_HUGETLBFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=y -CONFIG_NFS_V2=y -CONFIG_NFS_V3=y -# CONFIG_NFS_V3_ACL is not set -# CONFIG_NFS_V4 is not set -# CONFIG_NFS_SWAP is not set -CONFIG_ROOT_NFS=y -CONFIG_NFS_DISABLE_UDP_SUPPORT=y -# CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=y -CONFIG_LOCKD=y -CONFIG_LOCKD_V4=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=y -# CONFIG_SUNRPC_DEBUG is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -CONFIG_NLS_ISO8859_15=y -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_KEY_NOTIFICATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_XOR_BLOCKS=y -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -CONFIG_CRYPTO_XXHASH=y -CONFIG_CRYPTO_BLAKE2B=y -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_SHA1 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y -CONFIG_CRYPTO_LIB_BLAKE2S=y -CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y -CONFIG_CRYPTO_LIB_CHACHA=y -CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=y -CONFIG_CRYPTO_LIB_CURVE25519=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 -CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y -CONFIG_CRYPTO_LIB_POLY1305=y -CONFIG_CRYPTO_LIB_CHACHA20POLY1305=y -CONFIG_CRYPTO_LIB_SHA256=y -# CONFIG_CRYPTO_HW is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y -# CONFIG_PKCS7_TEST_KEY is not set -# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_RAID6_PQ=y -# CONFIG_RAID6_PQ_BENCHMARK is not set -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -CONFIG_LIBCRC32C=y -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_ZSTD_COMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_ZSTD=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_SWIOTLB=y -CONFIG_DMA_CMA=y -# CONFIG_DMA_PERNUMA_CMA is not set - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=16 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -# CONFIG_IRQ_POLL is not set -CONFIG_MPILIB=y -CONFIG_LIBFDT=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -CONFIG_GENERIC_IOREMAP=y -CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -CONFIG_HAVE_ARCH_KGDB_QXFER_PKT=y -# CONFIG_KGDB is not set -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -CONFIG_WQ_WATCHDOG=y -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set - -# -# riscv Debugging -# - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/slimboot/Makefile b/mainboards/slimboot/Makefile deleted file mode 100644 index f365a2da..00000000 --- a/mainboards/slimboot/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -default: build - -build: - echo fetch, flashkernel, or qemu - -qemu: flashkernel - qemu-system-x86_64 -kernel flashkernel -serial stdio -monitor /dev/null - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -uroot: - go run github.com/u-root/u-root -build=bb all - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-4.14.111 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz - xzcat kernel.xz | tar x - mv linux-4.14.111 linux -geturoot: - go get -u github.com/u-root/u-root - diff --git a/mainboards/slimboot/config-4.14.111 b/mainboards/slimboot/config-4.14.111 deleted file mode 100644 index 668213a2..00000000 --- a/mainboards/slimboot/config-4.14.111 +++ /dev/null @@ -1,2385 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/st/st32mp1517c/.gitignore b/mainboards/st/st32mp1517c/.gitignore deleted file mode 100644 index 13d92ce9..00000000 --- a/mainboards/st/st32mp1517c/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -flashinitramfs.cpio -flashinitramfs.cpio.lzma -flashkernel -linux diff --git a/mainboards/st/st32mp1517c/Makefile b/mainboards/st/st32mp1517c/Makefile deleted file mode 100644 index 5354cc2b..00000000 --- a/mainboards/st/st32mp1517c/Makefile +++ /dev/null @@ -1,125 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -default: flash - -flash: tiny.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, flashkernel, or image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - GOARCH=arm u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - GOARCH=arm go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - GOARCH=arm go run github.com/u-root/u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make oldconfig && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make -j32) - cp linux/arch/arm/boot/zImage $@ - -testflashkernel: flashkernel - qemu-system-arm -machine ast2600-evb -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -# These stanzas fetch code. -fetch: getkernel geturoot - -getkernel: - rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux - (cd linux && make mrproper) - (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make tinyconfig) - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/st/st32mp1517c/flash.config b/mainboards/st/st32mp1517c/flash.config deleted file mode 100644 index 27ac63c8..00000000 --- a/mainboards/st/st32mp1517c/flash.config +++ /dev/null @@ -1,1237 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: arm-linux-gnueabi-gcc (Debian 9.2.1-8) 9.2.1 20190909 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=90201 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_USELIB is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_GENERIC_CLOCKEVENTS=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -CONFIG_PERF_USE_VMALLOC=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -# CONFIG_PERF_EVENTS is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_MMAP_ALLOW_UNINITIALIZED is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_ARM=y -CONFIG_SYS_SUPPORTS_APM_EMULATION=y -CONFIG_NO_IOPORT_MAP=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_PHYS_OFFSET=0x00800000 -CONFIG_PGTABLE_LEVELS=2 - -# -# System Type -# -# CONFIG_MMU is not set -CONFIG_ARCH_MMAP_RND_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_BITS_MAX=16 -CONFIG_ARM_SINGLE_ARMV7M=y -# CONFIG_ARCH_EBSA110 is not set -# CONFIG_ARCH_EP93XX is not set -# CONFIG_ARCH_FOOTBRIDGE is not set -# CONFIG_ARCH_DOVE is not set -# CONFIG_ARCH_SA1100 is not set -# CONFIG_ARCH_S3C24XX is not set -# CONFIG_ARCH_AT91 is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_STM32 is not set -# CONFIG_ARCH_EFM32 is not set -# CONFIG_ARCH_LPC18XX is not set -# CONFIG_ARCH_MPS2 is not set - -# -# Processor Type -# -CONFIG_CPU_V7M=y -CONFIG_CPU_THUMBONLY=y -CONFIG_CPU_THUMB_CAPABLE=y -CONFIG_CPU_32v7M=y -CONFIG_CPU_ABRT_NOMMU=y -CONFIG_CPU_PABRT_LEGACY=y -CONFIG_CPU_CACHE_NOP=y -CONFIG_CPU_CACHE_V7M=y -CONFIG_CPU_V7M_NUM_IRQ=240 - -# -# Processor Features -# -CONFIG_ARM_THUMB=y -# CONFIG_CPU_ICACHE_DISABLE is not set -# CONFIG_CPU_DCACHE_DISABLE is not set -# CONFIG_CPU_BPREDICT_DISABLE is not set -CONFIG_ARM_L1_CACHE_SHIFT=5 -# CONFIG_ARM_DMA_MEM_BUFFERABLE is not set -# CONFIG_SET_MEM_PARAM is not set -CONFIG_DRAM_BASE=0x00800000 -CONFIG_DRAM_SIZE=0x00800000 -# CONFIG_REMAP_VECTORS_TO_RAM is not set -# CONFIG_ARM_MPU is not set -# end of System Type - -# -# Bus support -# -# end of Bus support - -# -# Kernel Features -# -CONFIG_PAGE_OFFSET=0x00800000 -CONFIG_ARCH_NR_GPIO=0 -CONFIG_HZ_FIXED=0 -CONFIG_HZ_100=y -# CONFIG_HZ_200 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -# CONFIG_HZ_500 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=100 -CONFIG_THUMB2_KERNEL=y -CONFIG_AEABI=y -CONFIG_HAVE_ARCH_PFN_VALID=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_FORCE_MAX_ZONEORDER=11 -# CONFIG_SECCOMP is not set -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -# end of Kernel Features - -# -# Boot options -# -CONFIG_USE_OF=y -# CONFIG_ATAGS is not set -CONFIG_ZBOOT_ROM_TEXT=0 -CONFIG_ZBOOT_ROM_BSS=0 -# CONFIG_ARM_APPENDED_DTB is not set -CONFIG_CMDLINE="" -# CONFIG_XIP_KERNEL is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_AUTO_ZRELADDR=y -# end of Boot options - -# -# CPU Power Management -# - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of CPU Power Management - -# -# Floating point emulation -# - -# -# At least one emulation must be selected -# -# end of Floating point emulation - -# -# Power management options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_APM_EMULATION is not set -CONFIG_ARCH_SUSPEND_POSSIBLE=y -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_HAVE_OPROFILE=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_32BIT_OFF_T=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_REL=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_CLONE_BACKWARDS=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_OLD_SIGACTION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_ARCH_HAS_PHYS_TO_DMA=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y - -# -# Executable file formats -# -# CONFIG_BINFMT_ELF_FDPIC is not set -# CONFIG_BINFMT_SCRIPT is not set -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -CONFIG_SPLIT_PTLOCK_CPUS=999999 -CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# end of Memory Management options - -# CONFIG_NET is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -# CONFIG_FW_LOADER is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_BRCMSTB_GISB_ARB is not set -# CONFIG_VEXPRESS_CONFIG is not set -# end of Bus devices - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# - -# -# Intel MIC & related support -# -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_ECHO is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_BCM is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_SERIO_SERPORT=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -# CONFIG_SERIAL_8250 is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_UARTLITE is not set -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_ST_ASC is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_HVC_DCC is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_PM8XXX is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_T7L66XB is not set -# CONFIG_MFD_TC6387XB is not set -# CONFIG_MFD_TC6393XB is not set -# CONFIG_MFD_TQMX86 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_CLK_HSDK is not set -# CONFIG_CLK_QORIQ is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_NVIC=y -# CONFIG_AL_FIC is not set -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_DP is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_SYSCTL=y -# CONFIG_PROC_CHILDREN is not set -# CONFIG_SYSFS is not set -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -# CONFIG_NLS is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -# CONFIG_CRYPTO is not set - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_HAS_DMA_WRITE_COMBINE=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_GENERIC_ATOMIC64=y -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_ARCH_NO_SG_CHAIN=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_NOMMU_REGIONS is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# arm Debugging -# -CONFIG_UNWINDER_ARM=y -CONFIG_ARM_UNWIND=y -# CONFIG_DEBUG_USER is not set -# CONFIG_DEBUG_LL is not set -CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" -CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" -# CONFIG_CORESIGHT is not set -# end of arm Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/tianocore/ovmf/Dockerfile b/mainboards/tianocore/ovmf/Dockerfile deleted file mode 100644 index 8d8f0410..00000000 --- a/mainboards/tianocore/ovmf/Dockerfile +++ /dev/null @@ -1,30 +0,0 @@ -FROM golang:1.16.4-buster - -LABEL description="Testing environment for Linuxboot in OVMF" - -# Install dependencies -RUN apt update -RUN apt install -y \ - acpica-tools \ - bc \ - bison \ - build-essential \ - cpio \ - flex \ - kmod \ - libelf-dev \ - libncurses5-dev \ - libssl-dev \ - nasm \ - qemu-system \ - uuid-dev - -# Get the correct version of UTK -RUN git clone https://github.com/linuxboot/fiano /go/src/github.com/linuxboot/fiano -RUN cd /go/src/github.com/linuxboot/fiano/cmds/utk && git checkout v5.0.0 && GO111MODULE=off go install - -# Working directory for mounting git repo in -RUN mkdir /linuxboot-ovmf -WORKDIR /linuxboot-ovmf - -ENTRYPOINT ["/bin/bash"] diff --git a/mainboards/tianocore/ovmf/Makefile b/mainboards/tianocore/ovmf/Makefile deleted file mode 100644 index 47aa7936..00000000 --- a/mainboards/tianocore/ovmf/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CONTAINER_NAME := linuxboot-ovmf - -docker-build: Dockerfile - docker build -t $(CONTAINER_NAME) -f $< . - -docker-run: - docker run --tty --interactive --rm --volume "$(shell pwd)":/$(CONTAINER_NAME) $(CONTAINER_NAME) diff --git a/mainboards/tyan7106/.gitignore b/mainboards/tyan7106/.gitignore deleted file mode 100644 index a8ecb413..00000000 --- a/mainboards/tyan7106/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -/EATIT -/DIT -/bzImage -*.bin -/linux -/chipsec.cpio - diff --git a/mainboards/tyan7106/BURN b/mainboards/tyan7106/BURN deleted file mode 100755 index 366bd64c..00000000 --- a/mainboards/tyan7106/BURN +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -exit 0 -./uinit -m tester -echo "ALL DONE" diff --git a/mainboards/tyan7106/DXECLEANER b/mainboards/tyan7106/DXECLEANER deleted file mode 100755 index 50f087bf..00000000 --- a/mainboards/tyan7106/DXECLEANER +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -m tester -echo "ALL DONE" diff --git a/mainboards/tyan7106/L b/mainboards/tyan7106/L deleted file mode 100644 index 60a3faf6..00000000 --- a/mainboards/tyan7106/L +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash -~/go/bin/utk dxeclean.bin find 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 \ -find 55E76644-78A5-4A82-A900-7126A5798892 \ -find E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC \ -find 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 \ -find 899407D7-99FE-43D8-9A21-79EC328CAC21 \ -find 1B08A1DB-F91A-4FA1-A911-255C417F1CF7 \ -find 16D0A23E-C09C-407D-A14A-AD058FDD0CA1 \ -find BDCE85BB-FBAA-4F4E-9264-501A2C249581 \ -find FA20568B-548B-4B2B-81EF-1BA08D4A3CEC \ -find 4E82091E-32A1-4689-8A00-CDE41ED63CDD \ -find 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 \ -find 76D5CF91-0C55-434E-97C2-D2825C82E610 \ -find 734E8BE9-4801-4A31-A3FA-D61CCB601CA9 \ -find 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910 \ -find 502B04F3-71AB-47B4-BEAE-4736EA190AA4 \ -find CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 \ -find DCB2CE8E-73A7-4962-B2FD-95688B5A5BDD \ -find 271B424E-A4CC-4E0E-90A2-7EA4841F12F3 \ -find A210F973-229D-4F4D-AA37-9895E6C9EABA \ -find 9F3A0016-AE55-4288-829D-D55FD3AAC347 \ -find 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8 \ -find A062CF1F-8473-4AA3-8793-600BC4FFE9A8 \ -find E0471A15-76DC-4203-8B27-6DB4F8BA644A \ -find B7EE4835-84CE-4B15-BF52-2D11574CE470 \ -find 81A4F912-E72F-44ED-8931-16A9FE9650E0 \ -find 999BD818-7DF7-4A9A-A502-9B75033E6A0F \ -find C9A6DE36-FDFF-4FAF-8343-85D9E3470F43 \ -find 59AF16B0-661D-4865-A381-38DE68385D8D \ -find 87AB821C-79B8-4EF6-A913-21D22063F55F \ -find 64A11188-5B86-4F59-A702-73365896E65E \ -find 76A7B4FC-C8D5-462D-A4D2-6E88338A772A \ -find AA7B4695-00B4-4468-AD92-99370AC031C5 \ -find E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017 \ -find 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF \ -find 2E6A521C-F697-402D-9774-98B2B7E140F3 \ -find 62DC08AC-A651-4EE9-AF81-EAA9261E9780 \ -find 536DF136-BD96-4E1E-ADF5-6B637C139063 \ -find F282DD45-CA7B-40EC-9618-99381C08F409 \ -find 6A3DEF38-0A45-4107-A74E-ABF2B8EAED86 \ -find 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 \ -find BCEA6548-E204-4486-8F2A-36E13C7838CE \ - -exit 0 - -| jq -r '..|.UUID?|select(type=="string")' | sort -u diff --git a/mainboards/tyan7106/LIST b/mainboards/tyan7106/LIST deleted file mode 100644 index 8393a45c..00000000 --- a/mainboards/tyan7106/LIST +++ /dev/null @@ -1,15 +0,0 @@ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - remove 8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF \ - remove 53BCC14F-C24F-434C-B294-8ED2D4CC1860 \ - remove 9B680FCE-AD6B-4F3A-B60B-F59899003443 \ - remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 \ - remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 \ - remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B \ - remove C10194E7-DEB2-4AF4-9EEE-BFFDE4D7D4C7 \ - remove A19B1FE7-C1BC-49F8-875F-54A5D542443F \ - remove 62D171CB-78CD-4480-8678-C6A2A797A8DE \ - remove 79CA4208-BBA1-4A9A-8456-E1E66A81484E \ - remove 378D7B65-8DA9-4773-B6E4-A47826A833E1 \ - remove 40BEAB40-CECE-4909-B133-20A413AE19E9 \ - remove 63809859-F029-41C3-9F34-EEEB9EA787A5 \ - diff --git a/mainboards/tyan7106/LOG b/mainboards/tyan7106/LOG deleted file mode 100644 index f277fd36..00000000 --- a/mainboards/tyan7106/LOG +++ /dev/null @@ -1,4652 +0,0 @@ -Script started on 2018-11-16 10:16:38-0800 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make cleanme -[?2004l~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist -Beginning of round 1 -Trying to remove E052D8A6-224A-4C32-8D37-2E0AE162364D -+ echo TEST /tmp/dxecleaner441568559/bios.bin -TEST /tmp/dxecleaner441568559/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner441568559/bios.bin -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:17:57 Listening on 192.168.0.1:8080 at 2018-11-16 10:17:57.694307347 -0800 PST m=+0.000924716 -2018/11/16 10:20:57 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:20:57.694638575 -0800 PST m=+180.001255831 -2018/11/16 10:20:57 accept tcp 192.168.0.1:8080: i/o timeout - Failed E052D8A6-224A-4C32-8D37-2E0AE162364D! -Trying to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 -+ echo TEST /tmp/dxecleaner705742530/bios.bin -TEST /tmp/dxecleaner705742530/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner705742530/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:21:13 Listening on 192.168.0.1:8080 at 2018-11-16 10:21:13.233298911 -0800 PST m=+0.000617227 -2018/11/16 10:24:13 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:24:13.233679613 -0800 PST m=+180.000997970 -2018/11/16 10:24:13 accept tcp 192.168.0.1:8080: i/o timeout - Failed 5AAB83E5-F027-4CA7-BFD0-16358CC9E453! -Trying to remove 55E76644-78A5-4A82-A900-7126A5798892 -+ echo TEST /tmp/dxecleaner377622841/bios.bin -TEST /tmp/dxecleaner377622841/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner377622841/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:24:27 Listening on 192.168.0.1:8080 at 2018-11-16 10:24:27.134646156 -0800 PST m=+0.001268002 -2018/11/16 10:27:27 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:27:27.135083674 -0800 PST m=+180.001705305 -2018/11/16 10:27:27 accept tcp 192.168.0.1:8080: i/o timeout - Failed 55E76644-78A5-4A82-A900-7126A5798892! -Trying to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC -+ echo TEST /tmp/dxecleaner339018052/bios.bin -TEST /tmp/dxecleaner339018052/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner339018052/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:27:41 Listening on 192.168.0.1:8080 at 2018-11-16 10:27:41.605018104 -0800 PST m=+0.001774252 -2018/11/16 10:30:41 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:30:41.605517899 -0800 PST m=+180.002273850 -2018/11/16 10:30:41 accept tcp 192.168.0.1:8080: i/o timeout - Failed E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC! -Trying to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 -+ echo TEST /tmp/dxecleaner003290579/bios.bin -TEST /tmp/dxecleaner003290579/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner003290579/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:30:54 Listening on 192.168.0.1:8080 at 2018-11-16 10:30:54.688347006 -0800 PST m=+0.001513405 -2018/11/16 10:33:54 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:33:54.688723032 -0800 PST m=+180.001889307 -2018/11/16 10:33:54 accept tcp 192.168.0.1:8080: i/o timeout - Failed 67820532-7613-4DD3-9ED7-3D9BE3A7DA63! -Trying to remove 899407D7-99FE-43D8-9A21-79EC328CAC21 -+ echo TEST /tmp/dxecleaner929679638/bios.bin -TEST /tmp/dxecleaner929679638/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner929679638/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:34:08 Listening on 192.168.0.1:8080 at 2018-11-16 10:34:08.897311673 -0800 PST m=+0.001082130 -2018/11/16 10:37:08 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:37:08.897743018 -0800 PST m=+180.001513311 -2018/11/16 10:37:08 accept tcp 192.168.0.1:8080: i/o timeout - Failed 899407D7-99FE-43D8-9A21-79EC328CAC21! -Trying to remove 1B08A1DB-F91A-4FA1-A911-255C417F1CF7 -+ echo TEST /tmp/dxecleaner591564669/bios.bin -TEST /tmp/dxecleaner591564669/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner591564669/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:37:22 Listening on 192.168.0.1:8080 at 2018-11-16 10:37:22.663409062 -0800 PST m=+0.001093099 -2018/11/16 10:40:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:40:22.663909237 -0800 PST m=+180.001593239 -2018/11/16 10:40:22 accept tcp 192.168.0.1:8080: i/o timeout - Failed 1B08A1DB-F91A-4FA1-A911-255C417F1CF7! -Trying to remove 16D0A23E-C09C-407D-A14A-AD058FDD0CA1 -+ echo TEST /tmp/dxecleaner610890424/bios.bin -TEST /tmp/dxecleaner610890424/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner610890424/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:40:36 Listening on 192.168.0.1:8080 at 2018-11-16 10:40:36.806657576 -0800 PST m=+0.001817328 -2018/11/16 10:43:36 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:43:36.807185346 -0800 PST m=+180.002344885 -2018/11/16 10:43:36 accept tcp 192.168.0.1:8080: i/o timeout - Failed 16D0A23E-C09C-407D-A14A-AD058FDD0CA1! -Trying to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581 -+ echo TEST /tmp/dxecleaner508184759/bios.bin -TEST /tmp/dxecleaner508184759/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner508184759/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:43:50 Listening on 192.168.0.1:8080 at 2018-11-16 10:43:50.617283943 -0800 PST m=+0.001149382 -2018/11/16 10:46:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:46:50.617786649 -0800 PST m=+180.001651888 -2018/11/16 10:46:50 accept tcp 192.168.0.1:8080: i/o timeout - Failed BDCE85BB-FBAA-4F4E-9264-501A2C249581! -Trying to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC -+ echo TEST /tmp/dxecleaner404900010/bios.bin -TEST /tmp/dxecleaner404900010/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner404900010/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:47:04 Listening on 192.168.0.1:8080 at 2018-11-16 10:47:04.534290061 -0800 PST m=+0.001112299 -2018/11/16 10:50:04 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:50:04.534762652 -0800 PST m=+180.001584743 -2018/11/16 10:50:04 accept tcp 192.168.0.1:8080: i/o timeout - Failed FA20568B-548B-4B2B-81EF-1BA08D4A3CEC! -Trying to remove 4E82091E-32A1-4689-8A00-CDE41ED63CDD -+ echo TEST /tmp/dxecleaner769461761/bios.bin -TEST /tmp/dxecleaner769461761/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner769461761/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:50:18 Listening on 192.168.0.1:8080 at 2018-11-16 10:50:18.227471797 -0800 PST m=+0.001171041 -2018/11/16 10:53:18 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:53:18.227974475 -0800 PST m=+180.001673586 -2018/11/16 10:53:18 accept tcp 192.168.0.1:8080: i/o timeout - Failed 4E82091E-32A1-4689-8A00-CDE41ED63CDD! -Trying to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 -+ echo TEST /tmp/dxecleaner708195692/bios.bin -TEST /tmp/dxecleaner708195692/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner708195692/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:53:32 Listening on 192.168.0.1:8080 at 2018-11-16 10:53:32.004333731 -0800 PST m=+0.001178713 -2018/11/16 10:56:32 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:56:32.004822485 -0800 PST m=+180.001667393 -2018/11/16 10:56:32 accept tcp 192.168.0.1:8080: i/o timeout - Failed 4A3602BC-1A05-4C82-99B4-588CD2A32CD5! -Trying to remove 76D5CF91-0C55-434E-97C2-D2825C82E610 -+ echo TEST /tmp/dxecleaner047703003/bios.bin -TEST /tmp/dxecleaner047703003/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner047703003/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:56:45 Listening on 192.168.0.1:8080 at 2018-11-16 10:56:45.761569475 -0800 PST m=+0.000777374 -2018/11/16 10:59:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:59:45.761913999 -0800 PST m=+180.001121883 -2018/11/16 10:59:45 accept tcp 192.168.0.1:8080: i/o timeout - Failed 76D5CF91-0C55-434E-97C2-D2825C82E610! -Trying to remove 734E8BE9-4801-4A31-A3FA-D61CCB601CA9 -+ echo TEST /tmp/dxecleaner168605566/bios.bin -TEST /tmp/dxecleaner168605566/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner168605566/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:59:59 Listening on 192.168.0.1:8080 at 2018-11-16 10:59:59.458549923 -0800 PST m=+0.001076088 -2018/11/16 11:02:59 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:02:59.459015104 -0800 PST m=+180.001541171 -2018/11/16 11:02:59 accept tcp 192.168.0.1:8080: i/o timeout - Failed 734E8BE9-4801-4A31-A3FA-D61CCB601CA9! -Trying to remove 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910 -+ echo TEST /tmp/dxecleaner519661765/bios.bin -TEST /tmp/dxecleaner519661765/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner519661765/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:03:13 Listening on 192.168.0.1:8080 at 2018-11-16 11:03:13.171790306 -0800 PST m=+0.001158173 -2018/11/16 11:06:13 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:06:13.172307637 -0800 PST m=+180.001675371 -2018/11/16 11:06:13 accept tcp 192.168.0.1:8080: i/o timeout - Failed 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910! -Trying to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4 -+ echo TEST /tmp/dxecleaner153779552/bios.bin -TEST /tmp/dxecleaner153779552/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner153779552/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:06:26 Listening on 192.168.0.1:8080 at 2018-11-16 11:06:26.841504441 -0800 PST m=+0.001293621 -2018/11/16 11:09:26 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:09:26.841923326 -0800 PST m=+180.001712429 -2018/11/16 11:09:26 accept tcp 192.168.0.1:8080: i/o timeout - Failed 502B04F3-71AB-47B4-BEAE-4736EA190AA4! -Trying to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 -+ echo TEST /tmp/dxecleaner296290623/bios.bin -TEST /tmp/dxecleaner296290623/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner296290623/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:09:40 Listening on 192.168.0.1:8080 at 2018-11-16 11:09:40.608567084 -0800 PST m=+0.001373609 -2018/11/16 11:12:40 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:12:40.609025194 -0800 PST m=+180.001831599 -2018/11/16 11:12:40 accept tcp 192.168.0.1:8080: i/o timeout - Failed CDC1C80D-E6D3-4A42-9229-75F3BEFCF109! -Trying to remove DCB2CE8E-73A7-4962-B2FD-95688B5A5BDD -+ echo TEST /tmp/dxecleaner492988818/bios.bin -TEST /tmp/dxecleaner492988818/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner492988818/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:12:54 Listening on 192.168.0.1:8080 at 2018-11-16 11:12:54.744548257 -0800 PST m=+0.000711578 -2018/11/16 11:15:54 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:15:54.744886838 -0800 PST m=+180.001050197 -2018/11/16 11:15:54 accept tcp 192.168.0.1:8080: i/o timeout - Failed DCB2CE8E-73A7-4962-B2FD-95688B5A5BDD! -Trying to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3 -+ echo TEST /tmp/dxecleaner278113737/bios.bin -TEST /tmp/dxecleaner278113737/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner278113737/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:16:08 Listening on 192.168.0.1:8080 at 2018-11-16 11:16:08.782999722 -0800 PST m=+0.001963469 -2018/11/16 11:19:08 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:19:08.783500033 -0800 PST m=+180.002463600 -2018/11/16 11:19:08 accept tcp 192.168.0.1:8080: i/o timeout - Failed 271B424E-A4CC-4E0E-90A2-7EA4841F12F3! -Trying to remove A210F973-229D-4F4D-AA37-9895E6C9EABA -+ echo TEST /tmp/dxecleaner195953300/bios.bin -TEST /tmp/dxecleaner195953300/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner195953300/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:19:22 Listening on 192.168.0.1:8080 at 2018-11-16 11:19:22.375535365 -0800 PST m=+0.001355052 -2018/11/16 11:22:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:22:22.376063368 -0800 PST m=+180.001882957 -2018/11/16 11:22:22 accept tcp 192.168.0.1:8080: i/o timeout - Failed A210F973-229D-4F4D-AA37-9895E6C9EABA! -Trying to remove 9F3A0016-AE55-4288-829D-D55FD3AAC347 -+ echo TEST /tmp/dxecleaner982728419/bios.bin -TEST /tmp/dxecleaner982728419/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner982728419/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:22:35 Listening on 192.168.0.1:8080 at 2018-11-16 11:22:35.88660605 -0800 PST m=+0.001830549 -2018/11/16 11:25:35 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:25:35.887116008 -0800 PST m=+180.002340348 -2018/11/16 11:25:35 accept tcp 192.168.0.1:8080: i/o timeout - Failed 9F3A0016-AE55-4288-829D-D55FD3AAC347! -Trying to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8 -+ echo TEST /tmp/dxecleaner755154150/bios.bin -TEST /tmp/dxecleaner755154150/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner755154150/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:25:49 Listening on 192.168.0.1:8080 at 2018-11-16 11:25:49.65294229 -0800 PST m=+0.001181539 -2018/11/16 11:28:49 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:28:49.65341941 -0800 PST m=+180.001658558 -2018/11/16 11:28:49 accept tcp 192.168.0.1:8080: i/o timeout - Failed 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8! -Trying to remove A062CF1F-8473-4AA3-8793-600BC4FFE9A8 -+ echo TEST /tmp/dxecleaner465185549/bios.bin -TEST /tmp/dxecleaner465185549/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner465185549/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:29:03 Listening on 192.168.0.1:8080 at 2018-11-16 11:29:03.303753792 -0800 PST m=+0.001476167 -2018/11/16 11:32:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:32:03.304185537 -0800 PST m=+180.001907848 -2018/11/16 11:32:03 accept tcp 192.168.0.1:8080: i/o timeout - Failed A062CF1F-8473-4AA3-8793-600BC4FFE9A8! -Trying to remove E0471A15-76DC-4203-8B27-6DB4F8BA644A -+ echo TEST /tmp/dxecleaner940361992/bios.bin -TEST /tmp/dxecleaner940361992/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner940361992/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:32:18 Listening on 192.168.0.1:8080 at 2018-11-16 11:32:18.155141247 -0800 PST m=+0.001203566 -2018/11/16 11:35:18 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:35:18.155508642 -0800 PST m=+180.001570917 -2018/11/16 11:35:18 accept tcp 192.168.0.1:8080: i/o timeout - Failed E0471A15-76DC-4203-8B27-6DB4F8BA644A! -Trying to remove B7EE4835-84CE-4B15-BF52-2D11574CE470 -+ echo TEST /tmp/dxecleaner011784391/bios.bin -TEST /tmp/dxecleaner011784391/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner011784391/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:35:31 Listening on 192.168.0.1:8080 at 2018-11-16 11:35:31.221048535 -0800 PST m=+0.001478451 -2018/11/16 11:38:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:38:31.221490654 -0800 PST m=+180.001920465 -2018/11/16 11:38:31 accept tcp 192.168.0.1:8080: i/o timeout - Failed B7EE4835-84CE-4B15-BF52-2D11574CE470! -Trying to remove 81A4F912-E72F-44ED-8931-16A9FE9650E0 -+ echo TEST /tmp/dxecleaner146193274/bios.bin -TEST /tmp/dxecleaner146193274/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner146193274/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:38:45 Listening on 192.168.0.1:8080 at 2018-11-16 11:38:45.165537897 -0800 PST m=+0.001818971 -2018/11/16 11:41:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:41:45.166112875 -0800 PST m=+180.002393720 -2018/11/16 11:41:45 accept tcp 192.168.0.1:8080: i/o timeout - Failed 81A4F912-E72F-44ED-8931-16A9FE9650E0! -Trying to remove 999BD818-7DF7-4A9A-A502-9B75033E6A0F -+ echo TEST /tmp/dxecleaner324786833/bios.bin -TEST /tmp/dxecleaner324786833/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner324786833/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:41:58 Listening on 192.168.0.1:8080 at 2018-11-16 11:41:58.846810158 -0800 PST m=+0.000899002 -2018/11/16 11:44:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:44:58.847232592 -0800 PST m=+180.001321430 -2018/11/16 11:44:58 accept tcp 192.168.0.1:8080: i/o timeout - Failed 999BD818-7DF7-4A9A-A502-9B75033E6A0F! -Trying to remove C9A6DE36-FDFF-4FAF-8343-85D9E3470F43 -+ echo TEST /tmp/dxecleaner693621436/bios.bin -TEST /tmp/dxecleaner693621436/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner693621436/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:45:12 Listening on 192.168.0.1:8080 at 2018-11-16 11:45:12.201928162 -0800 PST m=+0.001219411 -2018/11/16 11:48:12 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:48:12.202426324 -0800 PST m=+180.001717439 -2018/11/16 11:48:12 accept tcp 192.168.0.1:8080: i/o timeout - Failed C9A6DE36-FDFF-4FAF-8343-85D9E3470F43! -Trying to remove 59AF16B0-661D-4865-A381-38DE68385D8D -+ echo TEST /tmp/dxecleaner895955179/bios.bin -TEST /tmp/dxecleaner895955179/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner895955179/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:48:25 Listening on 192.168.0.1:8080 at 2018-11-16 11:48:25.831581862 -0800 PST m=+0.001165574 -2018/11/16 11:51:25 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:51:25.83210268 -0800 PST m=+180.001686169 -2018/11/16 11:51:25 accept tcp 192.168.0.1:8080: i/o timeout - Failed 59AF16B0-661D-4865-A381-38DE68385D8D! -Trying to remove 87AB821C-79B8-4EF6-A913-21D22063F55F -+ echo TEST /tmp/dxecleaner522573646/bios.bin -TEST /tmp/dxecleaner522573646/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner522573646/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:51:39 Listening on 192.168.0.1:8080 at 2018-11-16 11:51:39.739151464 -0800 PST m=+0.001827037 -2018/11/16 11:54:39 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:54:39.739667405 -0800 PST m=+180.002342761 -2018/11/16 11:54:39 accept tcp 192.168.0.1:8080: i/o timeout - Failed 87AB821C-79B8-4EF6-A913-21D22063F55F! -Trying to remove 64A11188-5B86-4F59-A702-73365896E65E -+ echo TEST /tmp/dxecleaner955357269/bios.bin -TEST /tmp/dxecleaner955357269/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner955357269/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:54:53 Listening on 192.168.0.1:8080 at 2018-11-16 11:54:53.542596104 -0800 PST m=+0.001123155 -2018/11/16 11:57:53 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:57:53.543112865 -0800 PST m=+180.001639839 -2018/11/16 11:57:53 accept tcp 192.168.0.1:8080: i/o timeout - Failed 64A11188-5B86-4F59-A702-73365896E65E! -Trying to remove 76A7B4FC-C8D5-462D-A4D2-6E88338A772A -+ echo TEST /tmp/dxecleaner344309680/bios.bin -TEST /tmp/dxecleaner344309680/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner344309680/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:58:07 Listening on 192.168.0.1:8080 at 2018-11-16 11:58:07.206484439 -0800 PST m=+0.001136888 -2018/11/16 12:01:07 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:01:07.206941912 -0800 PST m=+180.001594192 -2018/11/16 12:01:07 accept tcp 192.168.0.1:8080: i/o timeout - Failed 76A7B4FC-C8D5-462D-A4D2-6E88338A772A! -Trying to remove AA7B4695-00B4-4468-AD92-99370AC031C5 -+ echo TEST /tmp/dxecleaner611996495/bios.bin -TEST /tmp/dxecleaner611996495/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner611996495/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:01:21 Listening on 192.168.0.1:8080 at 2018-11-16 12:01:21.224721316 -0800 PST m=+0.001806474 -2018/11/16 12:04:21 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:04:21.225218094 -0800 PST m=+180.002303052 -2018/11/16 12:04:21 accept tcp 192.168.0.1:8080: i/o timeout - Failed AA7B4695-00B4-4468-AD92-99370AC031C5! -Trying to remove E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017 -+ echo TEST /tmp/dxecleaner136478818/bios.bin -TEST /tmp/dxecleaner136478818/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner136478818/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:04:34 Listening on 192.168.0.1:8080 at 2018-11-16 12:04:34.842074129 -0800 PST m=+0.001311694 -2018/11/16 12:07:34 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:07:34.842583336 -0800 PST m=+180.001820706 -2018/11/16 12:07:34 accept tcp 192.168.0.1:8080: i/o timeout - Failed E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017! -Trying to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -+ echo TEST /tmp/dxecleaner756283481/bios.bin -TEST /tmp/dxecleaner756283481/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner756283481/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:07:48 Listening on 192.168.0.1:8080 at 2018-11-16 12:07:48.556600428 -0800 PST m=+0.001170576 -2018/11/16 12:10:48 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:10:48.557123795 -0800 PST m=+180.001694081 -2018/11/16 12:10:48 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF! -Trying to remove 2E6A521C-F697-402D-9774-98B2B7E140F3 -+ echo TEST /tmp/dxecleaner529659364/bios.bin -TEST /tmp/dxecleaner529659364/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner529659364/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:11:02 Listening on 192.168.0.1:8080 at 2018-11-16 12:11:02.988089689 -0800 PST m=+0.000685342 -2018/11/16 12:14:02 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:14:02.988390824 -0800 PST m=+180.000986431 -2018/11/16 12:14:02 accept tcp 192.168.0.1:8080: i/o timeout - Failed 2E6A521C-F697-402D-9774-98B2B7E140F3! -Trying to remove 62DC08AC-A651-4EE9-AF81-EAA9261E9780 -+ echo TEST /tmp/dxecleaner703950323/bios.bin -TEST /tmp/dxecleaner703950323/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner703950323/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:14:16 Listening on 192.168.0.1:8080 at 2018-11-16 12:14:16.60607516 -0800 PST m=+0.000673641 -2018/11/16 12:17:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:17:16.606403353 -0800 PST m=+180.001001874 -2018/11/16 12:17:16 accept tcp 192.168.0.1:8080: i/o timeout - Failed 62DC08AC-A651-4EE9-AF81-EAA9261E9780! -Trying to remove 536DF136-BD96-4E1E-ADF5-6B637C139063 -+ echo TEST /tmp/dxecleaner746070198/bios.bin -TEST /tmp/dxecleaner746070198/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner746070198/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:17:30 Listening on 192.168.0.1:8080 at 2018-11-16 12:17:30.607006131 -0800 PST m=+0.001276512 -2018/11/16 12:20:30 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:20:30.607427948 -0800 PST m=+180.001698053 -2018/11/16 12:20:30 accept tcp 192.168.0.1:8080: i/o timeout - Failed 536DF136-BD96-4E1E-ADF5-6B637C139063! -Trying to remove F282DD45-CA7B-40EC-9618-99381C08F409 -+ echo TEST /tmp/dxecleaner371297437/bios.bin -TEST /tmp/dxecleaner371297437/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner371297437/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:20:44 Listening on 192.168.0.1:8080 at 2018-11-16 12:20:44.397158587 -0800 PST m=+0.000716602 -2018/11/16 12:23:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:23:44.397468651 -0800 PST m=+180.001026641 -2018/11/16 12:23:44 accept tcp 192.168.0.1:8080: i/o timeout - Failed F282DD45-CA7B-40EC-9618-99381C08F409! -Trying to remove 6A3DEF38-0A45-4107-A74E-ABF2B8EAED86 -+ echo TEST /tmp/dxecleaner345268056/bios.bin -TEST /tmp/dxecleaner345268056/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner345268056/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:23:59 Listening on 192.168.0.1:8080 at 2018-11-16 12:23:59.300663537 -0800 PST m=+0.001139508 -2018/11/16 12:26:59 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:26:59.301150245 -0800 PST m=+180.001626015 -2018/11/16 12:26:59 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6A3DEF38-0A45-4107-A74E-ABF2B8EAED86! -Trying to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 -+ echo TEST /tmp/dxecleaner585440471/bios.bin -TEST /tmp/dxecleaner585440471/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner585440471/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:27:13 Listening on 192.168.0.1:8080 at 2018-11-16 12:27:13.299004571 -0800 PST m=+0.001213342 -2018/11/16 12:30:13 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:30:13.299495976 -0800 PST m=+180.001704637 -2018/11/16 12:30:13 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666! -Trying to remove BCEA6548-E204-4486-8F2A-36E13C7838CE -+ echo TEST /tmp/dxecleaner479073354/bios.bin -TEST /tmp/dxecleaner479073354/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner479073354/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:30:27 Listening on 192.168.0.1:8080 at 2018-11-16 12:30:27.172227941 -0800 PST m=+0.001154156 -2018/11/16 12:33:27 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:33:27.17269385 -0800 PST m=+180.001619837 -2018/11/16 12:33:27 accept tcp 192.168.0.1:8080: i/o timeout - Failed BCEA6548-E204-4486-8F2A-36E13C7838CE! -Trying to remove 00B46EC9-2712-486B-A6A4-E2933581C28B -+ echo TEST /tmp/dxecleaner190491937/bios.bin -TEST /tmp/dxecleaner190491937/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner190491937/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:33:41 Listening on 192.168.0.1:8080 at 2018-11-16 12:33:41.085590022 -0800 PST m=+0.001237866 -2018/11/16 12:36:41 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:36:41.086070834 -0800 PST m=+180.001718484 -2018/11/16 12:36:41 accept tcp 192.168.0.1:8080: i/o timeout - Failed 00B46EC9-2712-486B-A6A4-E2933581C28B! -Trying to remove 60740CF3-D428-4500-80E6-04A5798241ED -+ echo TEST /tmp/dxecleaner184245260/bios.bin -TEST /tmp/dxecleaner184245260/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner184245260/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:36:55 Listening on 192.168.0.1:8080 at 2018-11-16 12:36:55.189804588 -0800 PST m=+0.001216694 -2018/11/16 12:39:55 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:39:55.190372217 -0800 PST m=+180.001784202 -2018/11/16 12:39:55 accept tcp 192.168.0.1:8080: i/o timeout - Failed 60740CF3-D428-4500-80E6-04A5798241ED! -Trying to remove B2CD74DE-11F9-418C-BF2E-DAC3035AAB7A -+ echo TEST /tmp/dxecleaner550035451/bios.bin -TEST /tmp/dxecleaner550035451/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner550035451/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:40:09 Listening on 192.168.0.1:8080 at 2018-11-16 12:40:09.198152288 -0800 PST m=+0.001506834 -2018/11/16 12:43:09 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:43:09.198492929 -0800 PST m=+180.001847486 -2018/11/16 12:43:09 accept tcp 192.168.0.1:8080: i/o timeout - Failed B2CD74DE-11F9-418C-BF2E-DAC3035AAB7A! -Trying to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E -+ echo TEST /tmp/dxecleaner018926878/bios.bin -TEST /tmp/dxecleaner018926878/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner018926878/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:43:23 Listening on 192.168.0.1:8080 at 2018-11-16 12:43:23.188094913 -0800 PST m=+0.001788855 -2018/11/16 12:46:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:46:23.188603304 -0800 PST m=+180.002297100 -2018/11/16 12:46:23 accept tcp 192.168.0.1:8080: i/o timeout - Failed AE587172-CC15-48E1-8BE1-29DDF05C6A1E! -Trying to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5 -+ echo TEST /tmp/dxecleaner524891621/bios.bin -TEST /tmp/dxecleaner524891621/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner524891621/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:46:37 Listening on 192.168.0.1:8080 at 2018-11-16 12:46:37.273179711 -0800 PST m=+0.001756142 -2018/11/16 12:49:37 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:49:37.273659598 -0800 PST m=+180.002235860 -2018/11/16 12:49:37 accept tcp 192.168.0.1:8080: i/o timeout - Failed 24A44CAF-0BF2-4514-90C4-C794B3E778F5! -Trying to remove 7ADBAD98-7FE1-4774-9260-747327435E6D -+ echo TEST /tmp/dxecleaner315629568/bios.bin -TEST /tmp/dxecleaner315629568/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner315629568/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:49:51 Listening on 192.168.0.1:8080 at 2018-11-16 12:49:51.095235922 -0800 PST m=+0.001360765 -2018/11/16 12:52:51 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:52:51.095729768 -0800 PST m=+180.001854420 -2018/11/16 12:52:51 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7ADBAD98-7FE1-4774-9260-747327435E6D! -Trying to remove ABBCE13D-E25A-4D9F-A1F9-2F7710786892 -+ echo TEST /tmp/dxecleaner410064735/bios.bin -TEST /tmp/dxecleaner410064735/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner410064735/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:53:04 Listening on 192.168.0.1:8080 at 2018-11-16 12:53:04.812497405 -0800 PST m=+0.001249035 -2018/11/16 12:56:04 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:56:04.813007413 -0800 PST m=+180.001758869 -2018/11/16 12:56:04 accept tcp 192.168.0.1:8080: i/o timeout - Failed ABBCE13D-E25A-4D9F-A1F9-2F7710786892! -Trying to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A -+ echo TEST /tmp/dxecleaner519282482/bios.bin -TEST /tmp/dxecleaner519282482/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner519282482/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:56:18 Listening on 192.168.0.1:8080 at 2018-11-16 12:56:18.99242611 -0800 PST m=+0.001699467 -2018/11/16 12:59:18 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:59:18.992912468 -0800 PST m=+180.002185671 -2018/11/16 12:59:18 accept tcp 192.168.0.1:8080: i/o timeout - Failed DC92A37B-4AC5-4117-AABB-019FFC0FD06A! -Trying to remove 788DD6A1-F1EE-4BBA-A925-C0E7D66271BD -+ echo TEST /tmp/dxecleaner022437097/bios.bin -TEST /tmp/dxecleaner022437097/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner022437097/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:59:33 Listening on 192.168.0.1:8080 at 2018-11-16 12:59:33.076815489 -0800 PST m=+0.001168367 -2018/11/16 13:02:33 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:02:33.077223563 -0800 PST m=+180.001576365 -2018/11/16 13:02:33 accept tcp 192.168.0.1:8080: i/o timeout - Failed 788DD6A1-F1EE-4BBA-A925-C0E7D66271BD! -Trying to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A -+ echo TEST /tmp/dxecleaner295716660/bios.bin -TEST /tmp/dxecleaner295716660/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner295716660/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:02:47 Listening on 192.168.0.1:8080 at 2018-11-16 13:02:47.20254074 -0800 PST m=+0.001512705 -2018/11/16 13:05:47 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:05:47.203021505 -0800 PST m=+180.001993305 -2018/11/16 13:05:47 accept tcp 192.168.0.1:8080: i/o timeout - Failed 69E6DD6D-F09E-485F-9627-EB70E9CFC82A! -Trying to remove 52C877FD-C27C-4779-B750-7880B28B4306 -+ echo TEST /tmp/dxecleaner060432643/bios.bin -TEST /tmp/dxecleaner060432643/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner060432643/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:06:01 Listening on 192.168.0.1:8080 at 2018-11-16 13:06:01.291764584 -0800 PST m=+0.001233711 -2018/11/16 13:09:01 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:09:01.292276776 -0800 PST m=+180.001745797 -2018/11/16 13:09:01 accept tcp 192.168.0.1:8080: i/o timeout - Failed 52C877FD-C27C-4779-B750-7880B28B4306! -Trying to remove 45055A79-B385-4705-A3AC-11CE99A1CB47 -+ echo TEST /tmp/dxecleaner272989318/bios.bin -TEST /tmp/dxecleaner272989318/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner272989318/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:09:15 Listening on 192.168.0.1:8080 at 2018-11-16 13:09:15.784162843 -0800 PST m=+0.001140410 -2018/11/16 13:12:15 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:12:15.78465432 -0800 PST m=+180.001631754 -2018/11/16 13:12:15 accept tcp 192.168.0.1:8080: i/o timeout - Failed 45055A79-B385-4705-A3AC-11CE99A1CB47! -Trying to remove 3137130C-D0A7-467E-9E8F-513816F159D8 -+ echo TEST /tmp/dxecleaner817000493/bios.bin -TEST /tmp/dxecleaner817000493/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner817000493/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:12:30 Listening on 192.168.0.1:8080 at 2018-11-16 13:12:30.757794968 -0800 PST m=+0.001095615 -2018/11/16 13:15:30 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:15:30.758269445 -0800 PST m=+180.001569898 -2018/11/16 13:15:30 accept tcp 192.168.0.1:8080: i/o timeout - Failed 3137130C-D0A7-467E-9E8F-513816F159D8! -Trying to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 -+ echo TEST /tmp/dxecleaner264582568/bios.bin -TEST /tmp/dxecleaner264582568/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner264582568/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:15:45 Listening on 192.168.0.1:8080 at 2018-11-16 13:15:45.947343695 -0800 PST m=+0.001203632 -2018/11/16 13:18:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:18:45.947868132 -0800 PST m=+180.001727823 -2018/11/16 13:18:45 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52! -Trying to remove 4FA7E1F2-CE8B-4D38-A3F8-342DC4515446 -+ echo TEST /tmp/dxecleaner574907111/bios.bin -TEST /tmp/dxecleaner574907111/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner574907111/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:19:00 Listening on 192.168.0.1:8080 at 2018-11-16 13:19:00.145962128 -0800 PST m=+0.000618703 -2018/11/16 13:22:00 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:22:00.146382206 -0800 PST m=+180.001038771 -2018/11/16 13:22:00 accept tcp 192.168.0.1:8080: i/o timeout - Failed 4FA7E1F2-CE8B-4D38-A3F8-342DC4515446! -Trying to remove DE141A05-FA40-432D-9631-5E3E990F44D5 -+ echo TEST /tmp/dxecleaner789488922/bios.bin -TEST /tmp/dxecleaner789488922/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner789488922/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:22:14 Listening on 192.168.0.1:8080 at 2018-11-16 13:22:14.073720214 -0800 PST m=+0.001061073 -2018/11/16 13:25:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:25:14.074195441 -0800 PST m=+180.001536204 -2018/11/16 13:25:14 accept tcp 192.168.0.1:8080: i/o timeout - Failed DE141A05-FA40-432D-9631-5E3E990F44D5! -Trying to remove 9100696B-368F-4F9A-984A-D606E578CCC1 -+ echo TEST /tmp/dxecleaner716708273/bios.bin -TEST /tmp/dxecleaner716708273/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner716708273/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:25:28 Listening on 192.168.0.1:8080 at 2018-11-16 13:25:28.029892037 -0800 PST m=+0.001147468 -2018/11/16 13:28:28 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:28:28.030381181 -0800 PST m=+180.001636525 -2018/11/16 13:28:28 accept tcp 192.168.0.1:8080: i/o timeout - Failed 9100696B-368F-4F9A-984A-D606E578CCC1! -Trying to remove 1DDBFD6A-3423-462F-9150-A7FFA66FF0CA -+ echo TEST /tmp/dxecleaner354482524/bios.bin -TEST /tmp/dxecleaner354482524/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner354482524/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:28:41 Listening on 192.168.0.1:8080 at 2018-11-16 13:28:41.979926998 -0800 PST m=+0.001190457 -2018/11/16 13:31:41 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:31:41.980420967 -0800 PST m=+180.001684233 -2018/11/16 13:31:41 accept tcp 192.168.0.1:8080: i/o timeout - Failed 1DDBFD6A-3423-462F-9150-A7FFA66FF0CA! -Trying to remove 6EEDE20E-8F32-4FE2-BEB7-7A00F3CCDBC3 -+ echo TEST /tmp/dxecleaner804074763/bios.bin -TEST /tmp/dxecleaner804074763/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner804074763/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:31:56 Listening on 192.168.0.1:8080 at 2018-11-16 13:31:56.630781961 -0800 PST m=+0.000998916 -2018/11/16 13:34:56 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:34:56.63120141 -0800 PST m=+180.001418337 -2018/11/16 13:34:56 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6EEDE20E-8F32-4FE2-BEB7-7A00F3CCDBC3! -Trying to remove 8B7E5420-1B71-442A-9916-C13A4FE02482 -+ echo TEST /tmp/dxecleaner929073902/bios.bin -TEST /tmp/dxecleaner929073902/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner929073902/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:35:10 Listening on 192.168.0.1:8080 at 2018-11-16 13:35:10.681290786 -0800 PST m=+0.001044389 -2018/11/16 13:38:10 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:38:10.681824736 -0800 PST m=+180.001578232 -2018/11/16 13:38:10 accept tcp 192.168.0.1:8080: i/o timeout - Failed 8B7E5420-1B71-442A-9916-C13A4FE02482! -Trying to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -+ echo TEST /tmp/dxecleaner351196533/bios.bin -TEST /tmp/dxecleaner351196533/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner351196533/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:38:24 Listening on 192.168.0.1:8080 at 2018-11-16 13:38:24.938909381 -0800 PST m=+0.001300292 -2018/11/16 13:41:24 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:41:24.939440535 -0800 PST m=+180.001831319 -2018/11/16 13:41:24 accept tcp 192.168.0.1:8080: i/o timeout - Failed 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6! -Trying to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 -+ echo TEST /tmp/dxecleaner309239376/bios.bin -TEST /tmp/dxecleaner309239376/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner309239376/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:41:38 Listening on 192.168.0.1:8080 at 2018-11-16 13:41:38.836782527 -0800 PST m=+0.001150814 -2018/11/16 13:44:38 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:44:38.837278109 -0800 PST m=+180.001646242 -2018/11/16 13:44:38 accept tcp 192.168.0.1:8080: i/o timeout - Failed 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9! -Trying to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1 -+ echo TEST /tmp/dxecleaner575217519/bios.bin -TEST /tmp/dxecleaner575217519/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner575217519/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:44:52 Listening on 192.168.0.1:8080 at 2018-11-16 13:44:52.659844689 -0800 PST m=+0.001594356 -2018/11/16 13:47:52 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:47:52.660288189 -0800 PST m=+180.002037699 -2018/11/16 13:47:52 accept tcp 192.168.0.1:8080: i/o timeout - Failed B11216C5-44E4-472C-ACB7-128A5A3AD7A1! -Trying to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 -+ echo TEST /tmp/dxecleaner780322306/bios.bin -TEST /tmp/dxecleaner780322306/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner780322306/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:48:06 Listening on 192.168.0.1:8080 at 2018-11-16 13:48:06.870218351 -0800 PST m=+0.001047882 -2018/11/16 13:51:06 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:51:06.870664287 -0800 PST m=+180.001493741 -2018/11/16 13:51:06 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78! -Trying to remove 68D89864-C0A8-490D-BE18-C83D67240928 -+ echo TEST /tmp/dxecleaner170511737/bios.bin -TEST /tmp/dxecleaner170511737/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner170511737/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:51:20 Listening on 192.168.0.1:8080 at 2018-11-16 13:51:20.492790988 -0800 PST m=+0.001242370 -2018/11/16 13:54:20 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:54:20.49329424 -0800 PST m=+180.001745441 -2018/11/16 13:54:20 accept tcp 192.168.0.1:8080: i/o timeout - Failed 68D89864-C0A8-490D-BE18-C83D67240928! -Trying to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A -+ echo TEST /tmp/dxecleaner034079876/bios.bin -TEST /tmp/dxecleaner034079876/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner034079876/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:54:34 Listening on 192.168.0.1:8080 at 2018-11-16 13:54:34.454188476 -0800 PST m=+0.001505144 -2018/11/16 13:57:34 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:57:34.454664819 -0800 PST m=+180.001981380 -2018/11/16 13:57:34 accept tcp 192.168.0.1:8080: i/o timeout - Failed CF6BCADD-D4C4-4095-B2BC-417D7247890A! -Trying to remove 43AC4333-472C-4B91-8C5C-52A8B4374256 -+ echo TEST /tmp/dxecleaner560458771/bios.bin -TEST /tmp/dxecleaner560458771/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner560458771/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:57:48 Listening on 192.168.0.1:8080 at 2018-11-16 13:57:48.741730642 -0800 PST m=+0.001224209 -2018/11/16 14:00:48 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:00:48.742215901 -0800 PST m=+180.001709268 -2018/11/16 14:00:48 accept tcp 192.168.0.1:8080: i/o timeout - Failed 43AC4333-472C-4B91-8C5C-52A8B4374256! -Trying to remove 1AA6D900-89D1-4C21-9C50-EDC7390A67C3 -+ echo TEST /tmp/dxecleaner896775254/bios.bin -TEST /tmp/dxecleaner896775254/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner896775254/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:01:02 Listening on 192.168.0.1:8080 at 2018-11-16 14:01:02.733223509 -0800 PST m=+0.001778303 -2018/11/16 14:04:02 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:04:02.733726709 -0800 PST m=+180.002281372 -2018/11/16 14:04:02 accept tcp 192.168.0.1:8080: i/o timeout - Failed 1AA6D900-89D1-4C21-9C50-EDC7390A67C3! -Trying to remove E1E1685A-7ABC-450F-882A-4E692CC6AF7E -+ echo TEST /tmp/dxecleaner218779581/bios.bin -TEST /tmp/dxecleaner218779581/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner218779581/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:04:16 Listening on 192.168.0.1:8080 at 2018-11-16 14:04:16.861760418 -0800 PST m=+0.001808135 -2018/11/16 14:07:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:07:16.862252578 -0800 PST m=+180.002300171 -2018/11/16 14:07:16 accept tcp 192.168.0.1:8080: i/o timeout - Failed E1E1685A-7ABC-450F-882A-4E692CC6AF7E! -Trying to remove 5F82BC22-85E1-489D-93A1-42BBD664B434 -+ echo TEST /tmp/dxecleaner782908920/bios.bin -TEST /tmp/dxecleaner782908920/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner782908920/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:07:31 Listening on 192.168.0.1:8080 at 2018-11-16 14:07:31.049563921 -0800 PST m=+0.001129006 -2018/11/16 14:10:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:10:31.050082494 -0800 PST m=+180.001647414 -2018/11/16 14:10:31 accept tcp 192.168.0.1:8080: i/o timeout - Failed 5F82BC22-85E1-489D-93A1-42BBD664B434! -Trying to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 -+ echo TEST /tmp/dxecleaner470983415/bios.bin -TEST /tmp/dxecleaner470983415/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner470983415/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:10:45 Listening on 192.168.0.1:8080 at 2018-11-16 14:10:45.090043592 -0800 PST m=+0.001834204 -2018/11/16 14:13:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:13:45.090555056 -0800 PST m=+180.002345532 -2018/11/16 14:13:45 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57! -Trying to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C -+ echo TEST /tmp/dxecleaner841751530/bios.bin -TEST /tmp/dxecleaner841751530/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner841751530/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:13:58 Listening on 192.168.0.1:8080 at 2018-11-16 14:13:58.721957042 -0800 PST m=+0.000659213 -2018/11/16 14:16:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:16:58.722274274 -0800 PST m=+180.000976349 -2018/11/16 14:16:58 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7FD082A9-3D6B-44E3-9C31-74D6B80F965C! -Trying to remove 0CDA5D94-951A-4C61-8DD5-E5BF34BA69EC -+ echo TEST /tmp/dxecleaner197675073/bios.bin -TEST /tmp/dxecleaner197675073/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner197675073/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:17:14 Listening on 192.168.0.1:8080 at 2018-11-16 14:17:14.041870974 -0800 PST m=+0.001242316 -2018/11/16 14:20:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:20:14.042370153 -0800 PST m=+180.001741385 -2018/11/16 14:20:14 accept tcp 192.168.0.1:8080: i/o timeout - Failed 0CDA5D94-951A-4C61-8DD5-E5BF34BA69EC! -Trying to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC -+ echo TEST /tmp/dxecleaner339244204/bios.bin -TEST /tmp/dxecleaner339244204/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner339244204/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:20:27 Listening on 192.168.0.1:8080 at 2018-11-16 14:20:27.714164968 -0800 PST m=+0.001142909 -2018/11/16 14:23:27 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:23:27.714659738 -0800 PST m=+180.001637565 -2018/11/16 14:23:27 accept tcp 192.168.0.1:8080: i/o timeout - Failed D6207835-B7E3-4FF8-B276-CDE3E52206BC! -Trying to remove FD023012-19F4-4235-ADCF-D924DBE246FE -+ echo TEST /tmp/dxecleaner021359643/bios.bin -TEST /tmp/dxecleaner021359643/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner021359643/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:23:41 Listening on 192.168.0.1:8080 at 2018-11-16 14:23:41.475695076 -0800 PST m=+0.001833503 -2018/11/16 14:26:41 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:26:41.47617895 -0800 PST m=+180.002317143 -2018/11/16 14:26:41 accept tcp 192.168.0.1:8080: i/o timeout - Failed FD023012-19F4-4235-ADCF-D924DBE246FE! -Trying to remove 3915886B-D833-4C23-B3ED-1453CCE7C5F2 -+ echo TEST /tmp/dxecleaner934392510/bios.bin -TEST /tmp/dxecleaner934392510/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner934392510/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:26:55 Listening on 192.168.0.1:8080 at 2018-11-16 14:26:55.330282955 -0800 PST m=+0.001100601 -2018/11/16 14:29:55 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:29:55.330807799 -0800 PST m=+180.001625354 -2018/11/16 14:29:55 accept tcp 192.168.0.1:8080: i/o timeout - Failed 3915886B-D833-4C23-B3ED-1453CCE7C5F2! -Trying to remove 9AE51047-E0B9-4A50-9E72-84E359D20189 -+ echo TEST /tmp/dxecleaner379580677/bios.bin -TEST /tmp/dxecleaner379580677/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner379580677/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:30:09 Listening on 192.168.0.1:8080 at 2018-11-16 14:30:09.253990305 -0800 PST m=+0.000607373 -2018/11/16 14:33:09 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:33:09.25433818 -0800 PST m=+180.000955305 -2018/11/16 14:33:09 accept tcp 192.168.0.1:8080: i/o timeout - Failed 9AE51047-E0B9-4A50-9E72-84E359D20189! -Trying to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86 -+ echo TEST /tmp/dxecleaner325808288/bios.bin -TEST /tmp/dxecleaner325808288/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner325808288/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:33:23 Listening on 192.168.0.1:8080 at 2018-11-16 14:33:23.160435462 -0800 PST m=+0.001198076 -2018/11/16 14:36:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:36:23.160929371 -0800 PST m=+180.001691794 -2018/11/16 14:36:23 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6C160B26-E04C-4098-A6AC-C8C7B6471A86! -Trying to remove 63AAAFFA-53BD-4ED1-B5A3-A8A5619C563F -+ echo TEST /tmp/dxecleaner123956095/bios.bin -TEST /tmp/dxecleaner123956095/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner123956095/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:36:36 Listening on 192.168.0.1:8080 at 2018-11-16 14:36:36.874323719 -0800 PST m=+0.001216918 -2018/11/16 14:39:36 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:39:36.874820797 -0800 PST m=+180.001713822 -2018/11/16 14:39:36 accept tcp 192.168.0.1:8080: i/o timeout - Failed 63AAAFFA-53BD-4ED1-B5A3-A8A5619C563F! -Trying to remove 9E8DD95D-868B-41A4-966C-107338C291BB -+ echo TEST /tmp/dxecleaner099001554/bios.bin -TEST /tmp/dxecleaner099001554/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner099001554/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:39:50 Listening on 192.168.0.1:8080 at 2018-11-16 14:39:50.757670662 -0800 PST m=+0.001321751 -2018/11/16 14:42:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:42:50.758191008 -0800 PST m=+180.001841954 -2018/11/16 14:42:50 accept tcp 192.168.0.1:8080: i/o timeout - Failed 9E8DD95D-868B-41A4-966C-107338C291BB! -Trying to remove 6ADFFA83-55AE-4C9F-94A4-800C469BDABC -+ echo TEST /tmp/dxecleaner478897673/bios.bin -TEST /tmp/dxecleaner478897673/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner478897673/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:43:04 Listening on 192.168.0.1:8080 at 2018-11-16 14:43:04.825349858 -0800 PST m=+0.001237505 -2018/11/16 14:46:04 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:46:04.825878526 -0800 PST m=+180.001765980 -2018/11/16 14:46:04 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6ADFFA83-55AE-4C9F-94A4-800C469BDABC! -Trying to remove 29E0564F-B702-4352-A3A1-15FABD4A4E4A -+ echo TEST /tmp/dxecleaner031386068/bios.bin -TEST /tmp/dxecleaner031386068/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner031386068/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:46:19 Listening on 192.168.0.1:8080 at 2018-11-16 14:46:19.651286599 -0800 PST m=+0.001347047 -2018/11/16 14:49:19 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:49:19.651729801 -0800 PST m=+180.001790161 -2018/11/16 14:49:19 accept tcp 192.168.0.1:8080: i/o timeout - Failed 29E0564F-B702-4352-A3A1-15FABD4A4E4A! -Trying to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3 -+ echo TEST /tmp/dxecleaner595554595/bios.bin -TEST /tmp/dxecleaner595554595/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner595554595/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:49:33 Listening on 192.168.0.1:8080 at 2018-11-16 14:49:33.746898305 -0800 PST m=+0.001191704 -2018/11/16 14:52:33 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:52:33.747393216 -0800 PST m=+180.001686408 -2018/11/16 14:52:33 accept tcp 192.168.0.1:8080: i/o timeout - Failed D93DE2E3-3727-4D5B-B49F-777C93A971D3! -Trying to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2 -+ echo TEST /tmp/dxecleaner628058662/bios.bin -TEST /tmp/dxecleaner628058662/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner628058662/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:52:47 Listening on 192.168.0.1:8080 at 2018-11-16 14:52:47.592592323 -0800 PST m=+0.001166750 -2018/11/16 14:55:47 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:55:47.593083585 -0800 PST m=+180.001657901 -2018/11/16 14:55:47 accept tcp 192.168.0.1:8080: i/o timeout - Failed 72FE44FF-44FC-4653-918A-0D5E76C416D2! -Trying to remove 2D9BD72A-B238-4BFF-9BB9-B51E0D4D553C -+ echo TEST /tmp/dxecleaner843586893/bios.bin -TEST /tmp/dxecleaner843586893/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner843586893/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:56:01 Listening on 192.168.0.1:8080 at 2018-11-16 14:56:01.548509076 -0800 PST m=+0.001109930 -2018/11/16 14:59:01 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:59:01.54893941 -0800 PST m=+180.001540070 -2018/11/16 14:59:01 accept tcp 192.168.0.1:8080: i/o timeout - Failed 2D9BD72A-B238-4BFF-9BB9-B51E0D4D553C! -Trying to remove 71298B1B-26AA-44D8-87CD-91A087C3481A -+ echo TEST /tmp/dxecleaner857559112/bios.bin -TEST /tmp/dxecleaner857559112/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner857559112/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:59:15 Listening on 192.168.0.1:8080 at 2018-11-16 14:59:15.720041357 -0800 PST m=+0.001208388 -2018/11/16 15:02:15 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:02:15.720522747 -0800 PST m=+180.001689517 -2018/11/16 15:02:15 accept tcp 192.168.0.1:8080: i/o timeout - Failed 71298B1B-26AA-44D8-87CD-91A087C3481A! -Trying to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 -+ echo TEST /tmp/dxecleaner882981639/bios.bin -TEST /tmp/dxecleaner882981639/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner882981639/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:02:29 Listening on 192.168.0.1:8080 at 2018-11-16 15:02:29.572530051 -0800 PST m=+0.001331277 -2018/11/16 15:05:29 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:05:29.573031841 -0800 PST m=+180.001832917 -2018/11/16 15:05:29 accept tcp 192.168.0.1:8080: i/o timeout - Failed F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4! -Trying to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 -+ echo TEST /tmp/dxecleaner922902202/bios.bin -TEST /tmp/dxecleaner922902202/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner922902202/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:05:43 Listening on 192.168.0.1:8080 at 2018-11-16 15:05:43.250817984 -0800 PST m=+0.001216861 -2018/11/16 15:08:43 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:08:43.251315954 -0800 PST m=+180.001714704 -2018/11/16 15:08:43 accept tcp 192.168.0.1:8080: i/o timeout - Failed 018A5C7A-12EB-429D-9DEF-6FCC410B04E8! -Trying to remove F7A1F48E-0F6A-4F12-A74D-ED6F5B6B00F2 -+ echo TEST /tmp/dxecleaner172560593/bios.bin -TEST /tmp/dxecleaner172560593/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner172560593/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:08:57 Listening on 192.168.0.1:8080 at 2018-11-16 15:08:57.388033527 -0800 PST m=+0.001336954 -2018/11/16 15:11:57 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:11:57.388541008 -0800 PST m=+180.001844287 -2018/11/16 15:11:57 accept tcp 192.168.0.1:8080: i/o timeout - Failed F7A1F48E-0F6A-4F12-A74D-ED6F5B6B00F2! -Trying to remove 783AA974-DFB0-487B-906F-120FB9486E88 -+ echo TEST /tmp/dxecleaner576114172/bios.bin -TEST /tmp/dxecleaner576114172/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner576114172/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:12:11 Listening on 192.168.0.1:8080 at 2018-11-16 15:12:11.261753138 -0800 PST m=+0.001168778 -2018/11/16 15:15:11 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:15:11.262281724 -0800 PST m=+180.001697185 -2018/11/16 15:15:11 accept tcp 192.168.0.1:8080: i/o timeout - Failed 783AA974-DFB0-487B-906F-120FB9486E88! -Trying to remove 68D076CD-D8F3-409B-987F-1012CDB88242 -+ echo TEST /tmp/dxecleaner467538731/bios.bin -TEST /tmp/dxecleaner467538731/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner467538731/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:15:25 Listening on 192.168.0.1:8080 at 2018-11-16 15:15:25.13263091 -0800 PST m=+0.001815460 -2018/11/16 15:18:25 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:18:25.133173 -0800 PST m=+180.002357409 -2018/11/16 15:18:25 accept tcp 192.168.0.1:8080: i/o timeout - Failed 68D076CD-D8F3-409B-987F-1012CDB88242! -Trying to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 -+ echo TEST /tmp/dxecleaner025955982/bios.bin -TEST /tmp/dxecleaner025955982/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner025955982/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:18:38 Listening on 192.168.0.1:8080 at 2018-11-16 15:18:38.254250998 -0800 PST m=+0.001150129 -2018/11/16 15:21:38 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:21:38.25472826 -0800 PST m=+180.001627202 -2018/11/16 15:21:38 accept tcp 192.168.0.1:8080: i/o timeout - Failed 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768! -Trying to remove 5568E42E-DD33-4F6C-867F-7E73451104FE -+ echo TEST /tmp/dxecleaner318812309/bios.bin -TEST /tmp/dxecleaner318812309/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner318812309/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:21:52 Listening on 192.168.0.1:8080 at 2018-11-16 15:21:52.047048624 -0800 PST m=+0.001156065 -2018/11/16 15:24:52 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:24:52.047527804 -0800 PST m=+180.001635159 -2018/11/16 15:24:52 accept tcp 192.168.0.1:8080: i/o timeout - Failed 5568E42E-DD33-4F6C-867F-7E73451104FE! -Trying to remove 130B8BA5-E63E-44A0-85DB-4D4E571C526A -+ echo TEST /tmp/dxecleaner467351792/bios.bin -TEST /tmp/dxecleaner467351792/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner467351792/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:25:05 Listening on 192.168.0.1:8080 at 2018-11-16 15:25:05.974014412 -0800 PST m=+0.001201230 -2018/11/16 15:28:05 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:28:05.974496029 -0800 PST m=+180.001682650 -2018/11/16 15:28:05 accept tcp 192.168.0.1:8080: i/o timeout - Failed 130B8BA5-E63E-44A0-85DB-4D4E571C526A! -Trying to remove CD7C839D-0521-4B26-9476-9FF2CB70649A -+ echo TEST /tmp/dxecleaner767963535/bios.bin -TEST /tmp/dxecleaner767963535/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner767963535/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:28:20 Listening on 192.168.0.1:8080 at 2018-11-16 15:28:20.138820405 -0800 PST m=+0.000545607 -2018/11/16 15:31:20 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:31:20.139176858 -0800 PST m=+180.000902142 -2018/11/16 15:31:20 accept tcp 192.168.0.1:8080: i/o timeout - Failed CD7C839D-0521-4B26-9476-9FF2CB70649A! -Trying to remove B47417C7-E21F-4AC9-B0A2-7A158223A137 -+ echo TEST /tmp/dxecleaner415061410/bios.bin -TEST /tmp/dxecleaner415061410/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner415061410/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:31:35 Listening on 192.168.0.1:8080 at 2018-11-16 15:31:35.230322264 -0800 PST m=+0.001644089 -2018/11/16 15:34:35 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:34:35.230661359 -0800 PST m=+180.001983070 -2018/11/16 15:34:35 accept tcp 192.168.0.1:8080: i/o timeout - Failed B47417C7-E21F-4AC9-B0A2-7A158223A137! -Trying to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152 -+ echo TEST /tmp/dxecleaner466619033/bios.bin -TEST /tmp/dxecleaner466619033/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner466619033/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:34:49 Listening on 192.168.0.1:8080 at 2018-11-16 15:34:49.345268564 -0800 PST m=+0.001744819 -2018/11/16 15:37:49 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:37:49.345757154 -0800 PST m=+180.002233250 -2018/11/16 15:37:49 accept tcp 192.168.0.1:8080: i/o timeout - Failed E6DC9900-CCF6-452B-85FA-C7F1E52F0152! -Trying to remove E83C2C69-31E2-4557-A96F-0ADAB9EB7353 -+ echo TEST /tmp/dxecleaner843001124/bios.bin -TEST /tmp/dxecleaner843001124/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner843001124/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:38:03 Listening on 192.168.0.1:8080 at 2018-11-16 15:38:03.294810273 -0800 PST m=+0.001834947 -2018/11/16 15:41:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:41:03.295320825 -0800 PST m=+180.002345408 -2018/11/16 15:41:03 accept tcp 192.168.0.1:8080: i/o timeout - Failed E83C2C69-31E2-4557-A96F-0ADAB9EB7353! -Trying to remove E4C9411C-1268-404C-9E90-2573EF04F43F -+ echo TEST /tmp/dxecleaner413956659/bios.bin -TEST /tmp/dxecleaner413956659/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner413956659/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:41:17 Listening on 192.168.0.1:8080 at 2018-11-16 15:41:17.162663352 -0800 PST m=+0.002118938 -2018/11/16 15:44:17 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:44:17.163220352 -0800 PST m=+180.002675811 -2018/11/16 15:44:17 accept tcp 192.168.0.1:8080: i/o timeout - Failed E4C9411C-1268-404C-9E90-2573EF04F43F! -Trying to remove 56BF094C-69F6-49DD-8C1C-1ECEFF71C9E5 -+ echo TEST /tmp/dxecleaner826963446/bios.bin -TEST /tmp/dxecleaner826963446/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner826963446/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:44:31 Listening on 192.168.0.1:8080 at 2018-11-16 15:44:31.290037378 -0800 PST m=+0.000995418 -2018/11/16 15:47:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:47:31.290446649 -0800 PST m=+180.001404572 -2018/11/16 15:47:31 accept tcp 192.168.0.1:8080: i/o timeout - Failed 56BF094C-69F6-49DD-8C1C-1ECEFF71C9E5! -Trying to remove D4395796-6F4C-4C6B-B9D1-92DAA7199A84 -+ echo TEST /tmp/dxecleaner519728349/bios.bin -TEST /tmp/dxecleaner519728349/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner519728349/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:47:46 Listening on 192.168.0.1:8080 at 2018-11-16 15:47:46.112707462 -0800 PST m=+0.000939573 -2018/11/16 15:50:46 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:50:46.113097677 -0800 PST m=+180.001329733 -2018/11/16 15:50:46 accept tcp 192.168.0.1:8080: i/o timeout - Failed D4395796-6F4C-4C6B-B9D1-92DAA7199A84! -Trying to remove 95ECB758-627E-4A2E-B7B8-DC863EFE3425 -+ echo TEST /tmp/dxecleaner775829144/bios.bin -TEST /tmp/dxecleaner775829144/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner775829144/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:51:00 Listening on 192.168.0.1:8080 at 2018-11-16 15:51:00.98405075 -0800 PST m=+0.000617201 -2018/11/16 15:54:00 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:54:00.984369881 -0800 PST m=+180.000936367 -2018/11/16 15:54:00 accept tcp 192.168.0.1:8080: i/o timeout - Failed 95ECB758-627E-4A2E-B7B8-DC863EFE3425! -Trying to remove FF917E22-A228-448D-BDAA-68EFCCDDA5D3 -+ echo TEST /tmp/dxecleaner397097239/bios.bin -TEST /tmp/dxecleaner397097239/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner397097239/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:54:15 Listening on 192.168.0.1:8080 at 2018-11-16 15:54:15.029445552 -0800 PST m=+0.002172979 -2018/11/16 15:57:15 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:57:15.029947169 -0800 PST m=+180.002674427 -2018/11/16 15:57:15 accept tcp 192.168.0.1:8080: i/o timeout - Failed FF917E22-A228-448D-BDAA-68EFCCDDA5D3! -Trying to remove B13EDD38-684C-41ED-A305-D7B7E32497DF -+ echo TEST /tmp/dxecleaner382699402/bios.bin -TEST /tmp/dxecleaner382699402/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner382699402/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:57:29 Listening on 192.168.0.1:8080 at 2018-11-16 15:57:29.033070481 -0800 PST m=+0.001161932 -2018/11/16 16:00:29 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:00:29.033577069 -0800 PST m=+180.001668286 -2018/11/16 16:00:29 accept tcp 192.168.0.1:8080: i/o timeout - Failed B13EDD38-684C-41ED-A305-D7B7E32497DF! -Trying to remove CEF68C66-06AB-4FB3-A3ED-5FFA885B5725 -+ echo TEST /tmp/dxecleaner366544737/bios.bin -TEST /tmp/dxecleaner366544737/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner366544737/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:00:43 Listening on 192.168.0.1:8080 at 2018-11-16 16:00:43.070733812 -0800 PST m=+0.002432205 -2018/11/16 16:03:43 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:03:43.071176295 -0800 PST m=+180.002874558 -2018/11/16 16:03:43 accept tcp 192.168.0.1:8080: i/o timeout - Failed CEF68C66-06AB-4FB3-A3ED-5FFA885B5725! -Trying to remove DED7956D-7E20-4F20-91A1-190439B04D5B -+ echo TEST /tmp/dxecleaner147526476/bios.bin -TEST /tmp/dxecleaner147526476/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner147526476/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:03:56 Listening on 192.168.0.1:8080 at 2018-11-16 16:03:56.748971639 -0800 PST m=+0.001183163 -2018/11/16 16:06:56 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:06:56.749405774 -0800 PST m=+180.001617078 -2018/11/16 16:06:56 accept tcp 192.168.0.1:8080: i/o timeout - Failed DED7956D-7E20-4F20-91A1-190439B04D5B! -Trying to remove 50F6096D-7C98-4C78-9A1D-C5A1833B6A88 -+ echo TEST /tmp/dxecleaner809254459/bios.bin -TEST /tmp/dxecleaner809254459/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner809254459/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:07:11 Listening on 192.168.0.1:8080 at 2018-11-16 16:07:11.739761205 -0800 PST m=+0.000954621 -2018/11/16 16:10:11 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:10:11.740186815 -0800 PST m=+180.001380118 -2018/11/16 16:10:11 accept tcp 192.168.0.1:8080: i/o timeout - Failed 50F6096D-7C98-4C78-9A1D-C5A1833B6A88! -Trying to remove A29A63E3-E4E7-495F-8A6A-07738300CBB3 -+ echo TEST /tmp/dxecleaner289161310/bios.bin -TEST /tmp/dxecleaner289161310/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner289161310/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:10:25 Listening on 192.168.0.1:8080 at 2018-11-16 16:10:25.921327658 -0800 PST m=+0.001805027 -2018/11/16 16:13:25 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:13:25.921779149 -0800 PST m=+180.002256233 -2018/11/16 16:13:25 accept tcp 192.168.0.1:8080: i/o timeout - Failed A29A63E3-E4E7-495F-8A6A-07738300CBB3! -Trying to remove 2688B232-9C02-4C12-BE1F-857C0FF2AAE3 -+ echo TEST /tmp/dxecleaner941940261/bios.bin -TEST /tmp/dxecleaner941940261/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner941940261/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:13:40 Listening on 192.168.0.1:8080 at 2018-11-16 16:13:40.152093034 -0800 PST m=+0.001172144 -2018/11/16 16:16:40 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:16:40.152555871 -0800 PST m=+180.001634799 -2018/11/16 16:16:40 accept tcp 192.168.0.1:8080: i/o timeout - Failed 2688B232-9C02-4C12-BE1F-857C0FF2AAE3! -Trying to remove 858EBE6F-360F-415B-B7DC-463AAEB03412 -+ echo TEST /tmp/dxecleaner394507072/bios.bin -TEST /tmp/dxecleaner394507072/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner394507072/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:16:54 Listening on 192.168.0.1:8080 at 2018-11-16 16:16:54.958889249 -0800 PST m=+0.001635211 -2018/11/16 16:19:54 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:19:54.959323156 -0800 PST m=+180.002069053 -2018/11/16 16:19:54 accept tcp 192.168.0.1:8080: i/o timeout - Failed 858EBE6F-360F-415B-B7DC-463AAEB03412! -Trying to remove 0718AD81-F26A-4850-A6EC-F268E309D707 -+ echo TEST /tmp/dxecleaner592605599/bios.bin -TEST /tmp/dxecleaner592605599/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner592605599/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:20:08 Listening on 192.168.0.1:8080 at 2018-11-16 16:20:08.840097986 -0800 PST m=+0.001198788 -2018/11/16 16:23:08 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:23:08.840565045 -0800 PST m=+180.001665664 -2018/11/16 16:23:08 accept tcp 192.168.0.1:8080: i/o timeout - Failed 0718AD81-F26A-4850-A6EC-F268E309D707! -Trying to remove 4C8BDF60-2085-4577-8A46-96CB180967BC -+ echo TEST /tmp/dxecleaner098111090/bios.bin -TEST /tmp/dxecleaner098111090/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner098111090/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:23:22 Listening on 192.168.0.1:8080 at 2018-11-16 16:23:22.416587012 -0800 PST m=+0.001723243 -2018/11/16 16:26:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:26:22.417039671 -0800 PST m=+180.002175709 -2018/11/16 16:26:22 accept tcp 192.168.0.1:8080: i/o timeout - Failed 4C8BDF60-2085-4577-8A46-96CB180967BC! -Trying to remove 077A3100-1667-45FA-B98C-37651B5073EE -+ echo TEST /tmp/dxecleaner668991273/bios.bin -TEST /tmp/dxecleaner668991273/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner668991273/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:26:36 Listening on 192.168.0.1:8080 at 2018-11-16 16:26:36.365473028 -0800 PST m=+0.001621418 -2018/11/16 16:29:36 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:29:36.365946393 -0800 PST m=+180.002094660 -2018/11/16 16:29:36 accept tcp 192.168.0.1:8080: i/o timeout - Failed 077A3100-1667-45FA-B98C-37651B5073EE! -Trying to remove 580DD900-385D-11D7-883A-00500473D4EB -+ echo TEST /tmp/dxecleaner045262452/bios.bin -TEST /tmp/dxecleaner045262452/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner045262452/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:29:50 Listening on 192.168.0.1:8080 at 2018-11-16 16:29:50.486281134 -0800 PST m=+0.001215063 -2018/11/16 16:32:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:32:50.48675707 -0800 PST m=+180.001690832 -2018/11/16 16:32:50 accept tcp 192.168.0.1:8080: i/o timeout - Failed 580DD900-385D-11D7-883A-00500473D4EB! -Trying to remove B7D19491-E55A-470D-8508-85A5DFA41974 -+ echo TEST /tmp/dxecleaner389047619/bios.bin -TEST /tmp/dxecleaner389047619/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner389047619/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:33:04 Listening on 192.168.0.1:8080 at 2018-11-16 16:33:04.575256175 -0800 PST m=+0.001104023 -2018/11/16 16:36:04 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:36:04.575728572 -0800 PST m=+180.001576259 -2018/11/16 16:36:04 accept tcp 192.168.0.1:8080: i/o timeout - Failed B7D19491-E55A-470D-8508-85A5DFA41974! -Trying to remove C8339973-A563-4561-B858-D8476F9DEFC4 -+ echo TEST /tmp/dxecleaner512898502/bios.bin -TEST /tmp/dxecleaner512898502/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner512898502/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:36:18 Listening on 192.168.0.1:8080 at 2018-11-16 16:36:18.622611435 -0800 PST m=+0.001005821 -2018/11/16 16:39:18 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:39:18.623070185 -0800 PST m=+180.001464541 -2018/11/16 16:39:18 accept tcp 192.168.0.1:8080: i/o timeout - Failed C8339973-A563-4561-B858-D8476F9DEFC4! -Trying to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 -+ echo TEST /tmp/dxecleaner642717293/bios.bin -TEST /tmp/dxecleaner642717293/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner642717293/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:39:32 Listening on 192.168.0.1:8080 at 2018-11-16 16:39:32.797118674 -0800 PST m=+0.001177553 -^CSummary of removed DXEs: - Could not remove any DXEs -2018/11/16 16:41:23 unexpected exit status -1 -Makefile:4: recipe for target 'cleanme' failed -make: *** [cleanme] Error 1 - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit - -Script done on 2018-11-16 16:41:26-0800 diff --git a/mainboards/tyan7106/Makefile b/mainboards/tyan7106/Makefile deleted file mode 100644 index 87494917..00000000 --- a/mainboards/tyan7106/Makefile +++ /dev/null @@ -1,402 +0,0 @@ -GOPATH ?= $(HOME)/go - -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel - cp linux/arch/x86/boot/bzImage flashkernel - $(GOPATH)/bin/utk tyan7106.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - remove AMITSE \ - replace_pe32 FullShell flashkernel \ - save image.bin - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -uroot: - u-root -files key.pub:key.pub -files key.pub:authorized_keys -files ssh_host_rsa_key:id_rsa github.com/u-root/u-root/cmds/core/* github.com/u-root/cpu/cmds/cpu - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-4.14.111 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz - xzcat kernel.xz | tar x - mv linux-4.14.111 linux - go get -u github.com/linuxboot/fiano/cmds/utk - wget ftp://ftp.tyan.com/bios/S7106GM2NR-L2_v204.zip - unzip S7106GM2NR-L2_v204.zip - cp 7106V204.ROM tyan7106.bin - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# everything from here below was part of an experiment and can be ignored. -experiment: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - ForthUTK tyan7106.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - ForthUTK 98.splat fv ./DXECLEANER clean - -d4: - ForthUTK RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd $(GOPATH)/src/github.com/linuxboot/dut/uinit/&&go build) - cp $(GOPATH)/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/cmds/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - ForthUTK remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd $(GOPATH)/src/github.com/linuxboot/dut/uinit/&&go build) - cp $(GOPATH)/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/xcmds/pox github.com/u-root/u-root/cmds/scp github.com/u-root/u-root/cmds/cpio - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - $(GOPATH)/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - $(GOPATH)/bin/utk tyan7106.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore diff --git a/mainboards/tyan7106/NOTES b/mainboards/tyan7106/NOTES deleted file mode 100644 index 2860853d..00000000 --- a/mainboards/tyan7106/NOTES +++ /dev/null @@ -1,8 +0,0 @@ -GPIO control functions in -/usr/libexec/itami-host-power-control-common.sh - -/bin/reset works but I can't get power button to do anything useful. - -if I remove CsmDxe, then I can't warm reboot from the kernel - -The power cycle bits are a mess, DXECLEANER now has a reliable one. diff --git a/mainboards/tyan7106/RUN3 b/mainboards/tyan7106/RUN3 deleted file mode 100644 index 1b828f99..00000000 --- a/mainboards/tyan7106/RUN3 +++ /dev/null @@ -1,287997 +0,0 @@ -Script started on 2018-12-13 16:43:02-0800 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d -[?2004lfutk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean -2018/12/13 16:43:05 Found 414 things -2018/12/13 16:43:05 Try to remove D912C7BC-F098-4367-92BA-E911083C7B0E:EFI_FV_FILETYPE_DRIVER:Udp6Dxe (D912C7BC-F098-4367-92BA-E911083C7B0E) -2018/12/13 16:43:05 removed [0xc007096780] -2018/12/13 16:43:05 Try to remove B1DA0ADF-4F77-4070-A88E-BFFE1C60529A:EFI_FV_FILETYPE_DRIVER:AMITSE (B1DA0ADF-4F77-4070-A88E-BFFE1C60529A) -2018/12/13 16:43:05 removed [0xc00776e280] -2018/12/13 16:43:05 Try to remove 2E3AB8B6-AC9D-4D70-A675-54F52FB22D66:EFI_FV_FILETYPE_DRIVER:AtaPassThru (2E3AB8B6-AC9D-4D70-A675-54F52FB22D66) -2018/12/13 16:43:05 removed [0xc007096900] -2018/12/13 16:43:05 Try to remove 0A66E322-3740-4CCE-AD62-BD172CECCA35:EFI_FV_FILETYPE_DRIVER:ScsiDisk (0A66E322-3740-4CCE-AD62-BD172CECCA35) -2018/12/13 16:43:05 removed [0xc007096d00] -2018/12/13 16:43:05 Try to remove 1A7E4468-2F55-4A56-903C-01265EB7622B:EFI_FV_FILETYPE_DRIVER:TcpDxe (1A7E4468-2F55-4A56-903C-01265EB7622B) -2018/12/13 16:43:05 removed [0xc007096200] -2018/12/13 16:43:05 Try to remove B95E9FDA-26DE-48D2-8807-1F9107AC5E3A:EFI_FV_FILETYPE_DRIVER:UefiPxeBcDxe (B95E9FDA-26DE-48D2-8807-1F9107AC5E3A) -2018/12/13 16:43:05 removed [0xc007096280] -2018/12/13 16:43:05 Try to remove 94734718-0BBC-47FB-96A5-EE7A5AE6A2AD:EFI_FV_FILETYPE_DRIVER:Dhcp4Dxe (94734718-0BBC-47FB-96A5-EE7A5AE6A2AD) -2018/12/13 16:43:05 removed [0xc007096500] -2018/12/13 16:43:05 Try to remove 6D6963AB-906D-4A65-A7CA-BD40E5D6AF2B:EFI_FV_FILETYPE_DRIVER:Udp4Dxe (6D6963AB-906D-4A65-A7CA-BD40E5D6AF2B) -2018/12/13 16:43:05 removed [0xc007096680] -2018/12/13 16:43:05 Try to remove 6B38F7B4-AD98-40E9-9093-ACA2B5A253C4:EFI_FV_FILETYPE_DRIVER:DiskIoDxe (6B38F7B4-AD98-40E9-9093-ACA2B5A253C4) -2018/12/13 16:43:05 removed [0xc006ec7c80] -2018/12/13 16:43:05 Try to remove 95E3669D-34BE-4775-A651-7EA41B69D89E:EFI_FV_FILETYPE_DRIVER:Dhcp6Dxe (95E3669D-34BE-4775-A651-7EA41B69D89E) -2018/12/13 16:43:05 removed [0xc007096800] -2018/12/13 16:43:05 Try to remove FE612B72-203C-47B1-8560-A66D946EB371:EFI_FV_FILETYPE_FREEFORM:AMITSESetupData (FE612B72-203C-47B1-8560-A66D946EB371) -2018/12/13 16:43:05 removed [0xc00776e300] -2018/12/13 16:43:15 Found 404 things -2018/12/13 16:43:27 script is ./DXECLEANER -2018/12/13 16:43:38 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2018/12/13 16:43:38 removed [0xc00dbdc700] -+ echo TEST /tmp/futk199366987/1 -TEST /tmp/futk199366987/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk199366987/1 -r -[sudo] password for rminnich: -pam_glogin: invalid password -Sorry, try again. -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/13 16:45:19 Listening on 192.168.0.1:8080 at 2018-12-13 16:45:19.569684894 -0800 PST m=+0.001875189 -^Cinterrupt -[414 [95E3669D-34BE-4775-A651-7EA41B69D89E:EFI_FV_FILETYPE_DRIVER:Dhcp6Dxe FE612B72-203C-47B1-8560-A66D946EB371:EFI_FV_FILETYPE_FREEFORM:AMITSESetupData D912C7BC-F098-4367-92BA-E911083C7B0E:EFI_FV_FILETYPE_DRIVER:Udp6Dxe B1DA0ADF-4F77-4070-A88E-BFFE1C60529A:EFI_FV_FILETYPE_DRIVER:AMITSE 2E3AB8B6-AC9D-4D70-A675-54F52FB22D66:EFI_FV_FILETYPE_DRIVER:AtaPassThru 0A66E322-3740-4CCE-AD62-BD172CECCA35:EFI_FV_FILETYPE_DRIVER:ScsiDisk 1A7E4468-2F55-4A56-903C-01265EB7622B:EFI_FV_FILETYPE_DRIVER:TcpDxe B95E9FDA-26DE-48D2-8807-1F9107AC5E3A:EFI_FV_FILETYPE_DRIVER:UefiPxeBcDxe 94734718-0BBC-47FB-96A5-EE7A5AE6A2AD:EFI_FV_FILETYPE_DRIVER:Dhcp4Dxe 6D6963AB-906D-4A65-A7CA-BD40E5D6AF2B:EFI_FV_FILETYPE_DRIVER:Udp4Dxe 6B38F7B4-AD98-40E9-9093-ACA2B5A253C4:EFI_FV_FILETYPE_DRIVER:DiskIoDxe] 404 [/tmp/futk199366987/0] signal: killed]OK -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fgh -[?2004lbash: fgh: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ jobs -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ jobs -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ jobs -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ j./ (reverse-i-search)`': f': fgv': futk /tmp/x fv ./DXECLEANER clean ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/x fv ./DXECLEANER clean -[?2004l2018/12/14 15:08:34 Found 405 things -2018/12/14 15:08:34 script is ./DXECLEANER -2018/12/14 15:08:45 Try to remove 81A4F912-E72F-44ED-8931-16A9FE9650E0:EFI_FV_FILETYPE_DRIVER:KbcEmulDxe (81A4F912-E72F-44ED-8931-16A9FE9650E0) -2018/12/14 15:08:45 removed [0xc000023d00] -+ echo TEST /tmp/futk014708097/1 -TEST /tmp/futk014708097/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk014708097/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/14 15:09:51 Listening on 192.168.0.1:8080 at 2018-12-14 15:09:51.473336131 -0800 PST m=+0.004455892 -^Cinterrupt -[405 [/tmp/futk014708097/0] signal: killed]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/x fv ./DXECLEANER clean -[?2004l^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/x fv ./DXECLEANER clean -[?2004l2018/12/14 15:10:16 Found 405 things -2018/12/14 15:10:16 script is ./DXECLEANER -2018/12/14 15:10:27 Try to remove 628A497D-2BF6-4264-8741-069DBD3399D6:EFI_FV_FILETYPE_DRIVER:ConSplitter (628A497D-2BF6-4264-8741-069DBD3399D6) -2018/12/14 15:10:27 removed [0xc00ffe3b80] -+ echo TEST /tmp/futk336682591/1 -TEST /tmp/futk336682591/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk336682591/1 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/14 15:10:59 Listening on 192.168.0.1:8080 at 2018-12-14 15:10:59.244891943 -0800 PST m=+0.005510849 -^Cinterrupt -[405 [/tmp/futk336682591/0] signal: killed]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[1279848.891575] usb 4-1.1: new high-speed USB device number 12 using ehci-pci -[1279849.000016] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1279849.000021] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1279849.000561] hub 4-1.1:1.0: USB hub found -[1279849.000728] hub 4-1.1:1.0: 7 ports detected -[1279849.287604] usb 4-1.1.4: new high-speed USB device number 13 using ehci-pci -[1279849.401482] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[1279849.401488] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1279849.401492] usb 4-1.1.4: Product: servo:810-10010-02 -[1279849.401495] usb 4-1.1.4: Manufacturer: Google Inc -[1279849.401497] usb 4-1.1.4: SerialNumber: 686203-00010 -[1279849.487559] usb 4-1.1.5: new high-speed USB device number 14 using ehci-pci -[1279849.601329] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[1279849.601332] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1279849.601334] usb 4-1.1.5: Product: servo:810-10010-02 -[1279849.601336] usb 4-1.1.5: Manufacturer: Google Inc -[1279849.601337] usb 4-1.1.5: SerialNumber: 686203-00010 -[1279857.370503] usb 4-1.1: USB disconnect, device number 12 -[1279857.370509] usb 4-1.1.4: USB disconnect, device number 13 -[1279857.371210] usb 4-1.1.5: USB disconnect, device number 14 -[1280932.285397] usb 4-1.1: new high-speed USB device number 15 using ehci-pci -[1280932.397765] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1280932.397771] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1280932.398395] hub 4-1.1:1.0: USB hub found -[1280932.398544] hub 4-1.1:1.0: 7 ports detected -[1280932.570887] usb 4-1.1: USB disconnect, device number 15 -[1280967.097079] usb 4-1.1: new high-speed USB device number 16 using ehci-pci -[1280967.205726] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1280967.205732] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1280967.206265] hub 4-1.1:1.0: USB hub found -[1280967.206429] hub 4-1.1:1.0: 7 ports detected -[1280967.497076] usb 4-1.1.4: new high-speed USB device number 17 using ehci-pci -[1280967.611211] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[1280967.611216] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1280967.611220] usb 4-1.1.4: Product: servo:810-10010-02 -[1280967.611223] usb 4-1.1.4: Manufacturer: Google Inc -[1280967.611226] usb 4-1.1.4: SerialNumber: 686203-00071 -[1280967.697102] usb 4-1.1.5: new high-speed USB device number 18 using ehci-pci -[1280967.815087] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[1280967.815092] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1280967.815096] usb 4-1.1.5: Product: servo:810-10010-02 -[1280967.815099] usb 4-1.1.5: Manufacturer: Google Inc -[1280967.815102] usb 4-1.1.5: SerialNumber: 686203-00071 -[1296500.416011] usb 4-1.2.3.2: new high-speed USB device number 19 using ehci-pci -[1296500.529285] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1296500.529287] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1296500.529289] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1296500.529290] usb 4-1.2.3.2: Manufacturer: Linksys -[1296500.529291] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1296500.615957] usb 4-1.2.3.2: reset high-speed USB device number 19 using ehci-pci -[1296500.765293] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1296500.861448] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1296500.979426] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296500.989098] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296519.485261] show_signal_msg: 7043 callbacks suppressed -[1296519.485265] cinnamon-settin[64959]: segfault at c0 ip 00007f4539f4c243 sp 00007ffe78a8b7b8 error 4 in libnetwork.so[7f4539f34000+84000] -[1296519.485277] Code: 8b 38 e8 88 89 ff ff 48 8b 3d 09 df 26 00 be 50 00 00 00 e8 ef 6e ff ff 48 89 df 48 8b 40 30 5b ff e0 0f 1f 44 00 00 48 8b 07 a0 c0 00 00 00 0f 1f 80 00 00 00 00 41 57 41 56 41 55 41 54 55 -[1296583.578384] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1296583.578943] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296668.539331] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296671.386242] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296689.079721] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296742.369617] usb 4-1.2.3.2: USB disconnect, device number 19 -[1296742.371350] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1296743.873559] usb 4-1.2.3.2: new high-speed USB device number 20 using ehci-pci -[1296743.983891] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1296743.983897] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1296743.983900] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1296743.983903] usb 4-1.2.3.2: Manufacturer: Linksys -[1296743.983906] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1296744.069625] usb 4-1.2.3.2: reset high-speed USB device number 20 using ehci-pci -[1296744.219739] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1296744.263883] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1296744.299688] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296744.308319] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296813.227066] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1296813.227686] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296857.261522] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296860.299895] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296945.324423] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296948.139304] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296966.190938] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297090.251849] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297142.449724] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297145.291359] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297163.114227] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297232.843373] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297317.517285] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297320.332034] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297337.674679] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297407.500206] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297492.427703] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297495.244211] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297512.970958] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297637.259642] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297689.353894] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297692.172541] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297709.619015] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297834.220184] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297886.316741] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297889.132592] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297907.181077] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298031.692241] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298084.012631] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298086.892635] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298104.621510] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298228.812549] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298281.078585] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298283.851702] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298302.028864] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298426.348224] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298478.457116] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298481.259878] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298498.669250] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298623.308664] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298675.404758] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298678.188932] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298695.693687] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298820.332722] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298872.396748] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298875.275980] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298893.259784] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299017.708904] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299069.997801] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299072.812820] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299090.220603] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299214.764985] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299266.956859] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299269.837229] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299287.820000] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299412.716668] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299464.588408] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299467.405058] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299485.198038] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299609.388976] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299661.709461] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299664.524994] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299681.999017] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299806.508886] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299858.765021] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299861.549053] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299878.994525] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300003.628819] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300055.913831] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300058.765475] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300076.174466] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300201.005398] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300252.974666] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300255.789267] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300273.838511] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300398.412693] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300450.765946] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300453.581097] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300471.405128] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300595.500356] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300647.820871] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300650.732403] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300668.752254] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300768.588917] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300833.761591] usb 4-1.2.4: USB disconnect, device number 5 -[1300837.054974] usb 4-1.2.4: new high-speed USB device number 21 using ehci-pci -[1300837.163519] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1300837.163525] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1300837.164259] usb 4-1.2.4: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1300837.164264] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1300837.164268] usb 4-1.2.4: Product: EM100PRO -[1300837.164271] usb 4-1.2.4: Manufacturer: DediProg -[1300850.445827] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300853.516700] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300885.964716] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300889.101347] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301267.181184] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301270.284807] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301431.660359] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301434.700601] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301625.742531] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301634.125044] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301718.507813] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301721.581444] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301724.813450] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301727.853571] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301813.290086] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301816.109722] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301833.870351] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301958.605678] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302010.894675] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302013.709155] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302031.756775] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302090.317678] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302175.565949] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302178.381734] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302196.749831] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302296.654023] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302391.883133] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302395.726283] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302524.629861] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302527.662055] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302624.590332] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302628.622209] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302757.324994] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302760.462147] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302856.461275] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302860.557659] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302988.685324] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302992.910070] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303088.909842] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303093.070097] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303221.261258] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303225.454383] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303321.074027] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303325.197912] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303440.655698] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303565.027530] usb 4-1.2.3.2: USB disconnect, device number 20 -[1303565.029652] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1303566.529654] usb 4-1.2.3.2: new high-speed USB device number 22 using ehci-pci -[1303566.643662] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1303566.643667] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1303566.643671] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1303566.643674] usb 4-1.2.3.2: Manufacturer: Linksys -[1303566.643677] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1303566.729681] usb 4-1.2.3.2: reset high-speed USB device number 22 using ehci-pci -[1303566.883734] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1303566.926943] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1303566.962399] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1303566.970680] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1369297.185614] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1369297.186192] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369381.572093] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369384.546343] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369464.385640] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369467.490493] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369491.555122] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369494.625939] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369580.131653] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369583.013817] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369601.504522] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369925.601617] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370010.272651] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370013.090923] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370031.656399] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370473.955069] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370559.106942] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370562.018813] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370579.842606] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372229.890928] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372314.884700] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372317.698952] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372335.236592] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372514.787008] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372600.227397] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372603.043160] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372620.995161] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372725.495715] usb 4-1.2.3.2: USB disconnect, device number 22 -[1372725.497952] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1372747.737833] usb 4-1.2.3.2: new high-speed USB device number 23 using ehci-pci -[1372747.852247] usb 4-1.2.3.2: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00 -[1372747.852253] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1372747.852256] usb 4-1.2.3.2: Product: USB 10/100/1000 LAN -[1372747.852259] usb 4-1.2.3.2: Manufacturer: Realtek -[1372747.852262] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1372747.945832] usb 4-1.2.3.2: reset high-speed USB device number 23 using ehci-pci -[1372748.095699] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1372748.179723] r8152 4-1.2.3.2:1.0 enx00e04c68000e: renamed from eth0 -[1372748.256713] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1372748.265399] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373513.956230] IPv6: ADDRCONF(NETDEV_CHANGE): enx00e04c68000e: link becomes ready -[1373513.956832] r8152 4-1.2.3.2:1.0 enx00e04c68000e: carrier on -[1373567.016830] net_ratelimit: 32 callbacks suppressed -[1373567.016838] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.021063] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.025323] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.029556] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.033808] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.038064] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.042308] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.046571] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.050829] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.055064] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.223813] usb 4-1.2.3.2: USB disconnect, device number 23 -[1373595.877273] usb 4-1.4: new high-speed USB device number 24 using ehci-pci -[1373595.991449] usb 4-1.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00 -[1373595.991454] usb 4-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1373595.991458] usb 4-1.4: Product: USB 10/100/1000 LAN -[1373595.991461] usb 4-1.4: Manufacturer: Realtek -[1373595.991464] usb 4-1.4: SerialNumber: 000001000000 -[1373596.077280] usb 4-1.4: reset high-speed USB device number 24 using ehci-pci -[1373596.227325] r8152 4-1.4:1.0 eth0: v1.09.9 -[1373596.273179] r8152 4-1.4:1.0 enx00e04c68000e: renamed from eth0 -[1373596.340503] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373596.349125] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373599.093121] IPv6: ADDRCONF(NETDEV_CHANGE): enx00e04c68000e: link becomes ready -[1373599.093699] r8152 4-1.4:1.0 enx00e04c68000e: carrier on -[1390218.115806] usb 2-2.3: USB disconnect, device number 5 -[1390218.390659] usb 2-2.3: new low-speed USB device number 6 using xhci_hcd -[1390218.498873] usb 2-2.3: New USB device found, idVendor=046d, idProduct=c03d, bcdDevice=20.00 -[1390218.498876] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1390218.498878] usb 2-2.3: Product: USB-PS/2 Optical Mouse -[1390218.498879] usb 2-2.3: Manufacturer: Logitech -[1390218.519559] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:046D:C03D.0005/input/input17 -[1390218.519870] hid-generic 0003:046D:C03D.0005: input,hidraw3: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:08:00.0-2.3/input0 -[1392848.636577] usb 4-1.2.4: USB disconnect, device number 21 -[1392854.241802] usb 4-1.2.4: new high-speed USB device number 25 using ehci-pci -[1392854.350539] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1392854.350545] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1392854.351160] usb 4-1.2.4: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1392854.351165] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1392854.351168] usb 4-1.2.4: Product: EM100PRO -[1392854.351172] usb 4-1.2.4: Manufacturer: DediProg -[1814996.857387] usb 4-1.2.3.1: USB disconnect, device number 6 -[1814996.857775] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0 -[1814996.857813] ftdi_sio 4-1.2.3.1:1.0: device disconnected -[1814996.999438] usb 4-1.2.3.3: USB disconnect, device number 8 -[1814997.098896] keyspan_1 ttyUSB1: Keyspan 1 port adapter converter now disconnected from ttyUSB1 -[1814997.098922] keyspan 4-1.2.3.3:1.0: device disconnected -[1814997.880138] usb 4-1.2.3: USB disconnect, device number 4 -[1815004.254951] usb 4-1.2.3: new full-speed USB device number 26 using ehci-pci -[1815004.370722] usb 4-1.2.3: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 -[1815004.370728] usb 4-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1815004.370731] usb 4-1.2.3: Product: FT232R USB UART -[1815004.370734] usb 4-1.2.3: Manufacturer: FTDI -[1815004.370737] usb 4-1.2.3: SerialNumber: AL009FRA -[1815004.373681] ftdi_sio 4-1.2.3:1.0: FTDI USB Serial Device converter detected -[1815004.373736] usb 4-1.2.3: Detected FT232RL -[1815004.374341] usb 4-1.2.3: FTDI USB Serial Device converter now attached to ttyUSB0 -[1815022.968025] usb 4-1.2.4: USB disconnect, device number 25 -[1815066.458397] usb 4-1.3: new high-speed USB device number 27 using ehci-pci -[1815066.574710] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1815066.574712] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1815066.575086] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1815066.575088] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1815066.575090] usb 4-1.3: Product: EM100PRO -[1815066.575091] usb 4-1.3: Manufacturer: DediProg -[1815099.734063] usb 4-1.2.4: new full-speed USB device number 28 using ehci-pci -[1815099.861193] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[1815099.861199] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1815099.861202] usb 4-1.2.4: Product: Keyspan USA-19H -[1815099.861205] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[1815099.862154] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[1815099.862402] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB1 -[1985672.360758] usb 4-1.3: USB disconnect, device number 27 -[1985677.189752] usb 4-1.3: new high-speed USB device number 29 using ehci-pci -[1985677.298515] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1985677.298520] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1985677.299083] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1985677.299088] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1985677.299091] usb 4-1.3: Product: EM100PRO -[1985677.299094] usb 4-1.3: Manufacturer: DediProg -[1986064.786992] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null) -[1986066.818559] EXT4-fs (loop1): mounting ext2 file system using the ext4 subsystem -[1986066.823584] EXT4-fs (loop1): mounted filesystem without journal. Opts: (null) -[1986068.183403] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null) -[1986069.102103] EXT4-fs (loop1p3): mounting ext2 file system using the ext4 subsystem -[1986069.107537] EXT4-fs (loop1p3): mounted filesystem without journal. Opts: (null) -[1986069.119832] EXT4-fs (loop1p1): mounted filesystem with ordered data mode. Opts: (null) -[1986069.129592] EXT4-fs (loop1p8): mounted filesystem with ordered data mode. Opts: (null) -[2004015.221731] print_req_error: I/O error, dev loop1, sector 9494400 -[2004015.221866] print_req_error: I/O error, dev loop1, sector 9494616 -[2004015.221901] print_req_error: I/O error, dev loop1, sector 5300224 -[2004015.221970] print_req_error: I/O error, dev loop1, sector 5300232 -[2004015.259406] print_req_error: I/O error, dev loop1, sector 85888 -[2004015.259489] print_req_error: I/O error, dev loop1, sector 86000 -[2004015.259526] print_req_error: I/O error, dev loop1, sector 20480 -[2004015.259598] print_req_error: I/O error, dev loop1, sector 20488 -[2004015.269837] print_req_error: I/O error, dev loop1, sector 5300096 -[2004015.269910] print_req_error: I/O error, dev loop1, sector 5300208 -[2004073.442332] print_req_error: 54 callbacks suppressed -[2004073.442333] print_req_error: I/O error, dev loop1, sector 9494400 -[2004073.442439] print_req_error: I/O error, dev loop1, sector 9494616 -[2004073.442489] print_req_error: I/O error, dev loop1, sector 5300224 -[2004073.442585] print_req_error: I/O error, dev loop1, sector 5300232 -[2004073.503462] print_req_error: I/O error, dev loop1, sector 85888 -[2004073.503602] print_req_error: I/O error, dev loop1, sector 86000 -[2004073.503743] print_req_error: I/O error, dev loop1, sector 20480 -[2004073.503883] print_req_error: I/O error, dev loop1, sector 20488 -[2004073.514021] print_req_error: I/O error, dev loop1, sector 5300096 -[2004073.514176] print_req_error: I/O error, dev loop1, sector 5300208 -[2025609.801518] print_req_error: 54 callbacks suppressed -[2025609.801519] print_req_error: I/O error, dev loop1, sector 9494400 -[2025609.801723] print_req_error: I/O error, dev loop1, sector 9494616 -[2025609.801788] print_req_error: I/O error, dev loop1, sector 5300224 -[2025609.801888] print_req_error: I/O error, dev loop1, sector 5300232 -[2025609.848723] print_req_error: I/O error, dev loop1, sector 85888 -[2025609.848876] print_req_error: I/O error, dev loop1, sector 86000 -[2025609.848962] print_req_error: I/O error, dev loop1, sector 20480 -[2025609.849034] print_req_error: I/O error, dev loop1, sector 20488 -[2025609.880213] print_req_error: I/O error, dev loop1, sector 5300096 -[2025609.880360] print_req_error: I/O error, dev loop1, sector 5300208 -[2025668.370560] print_req_error: 54 callbacks suppressed -[2025668.370562] print_req_error: I/O error, dev loop1, sector 9494400 -[2025668.370709] print_req_error: I/O error, dev loop1, sector 9494616 -[2025668.370772] print_req_error: I/O error, dev loop1, sector 5300224 -[2025668.370897] print_req_error: I/O error, dev loop1, sector 5300232 -[2025668.426083] print_req_error: I/O error, dev loop1, sector 85888 -[2025668.426237] print_req_error: I/O error, dev loop1, sector 86000 -[2025668.426319] print_req_error: I/O error, dev loop1, sector 20480 -[2025668.426464] print_req_error: I/O error, dev loop1, sector 20488 -[2025668.436546] print_req_error: I/O error, dev loop1, sector 5300096 -[2025668.436684] print_req_error: I/O error, dev loop1, sector 5300208 -[2047210.915760] print_req_error: 54 callbacks suppressed -[2047210.915762] print_req_error: I/O error, dev loop1, sector 9494400 -[2047210.915946] print_req_error: I/O error, dev loop1, sector 9494616 -[2047210.916004] print_req_error: I/O error, dev loop1, sector 5300224 -[2047210.916094] print_req_error: I/O error, dev loop1, sector 5300232 -[2047211.010384] print_req_error: I/O error, dev loop1, sector 85888 -[2047211.010546] print_req_error: I/O error, dev loop1, sector 86000 -[2047211.010631] print_req_error: I/O error, dev loop1, sector 20480 -[2047211.010777] print_req_error: I/O error, dev loop1, sector 20488 -[2047211.054805] print_req_error: I/O error, dev loop1, sector 5300096 -[2047211.054960] print_req_error: I/O error, dev loop1, sector 5300208 -[2047271.372119] print_req_error: 54 callbacks suppressed -[2047271.372121] print_req_error: I/O error, dev loop1, sector 9494400 -[2047271.372242] print_req_error: I/O error, dev loop1, sector 9494616 -[2047271.372305] print_req_error: I/O error, dev loop1, sector 5300224 -[2047271.372403] print_req_error: I/O error, dev loop1, sector 5300232 -[2047271.374552] print_req_error: I/O error, dev loop1, sector 85888 -[2047271.374626] print_req_error: I/O error, dev loop1, sector 86000 -[2047271.374777] print_req_error: I/O error, dev loop1, sector 20480 -[2047271.374838] print_req_error: I/O error, dev loop1, sector 20488 -[2047271.388727] print_req_error: I/O error, dev loop1, sector 5300096 -[2047271.388886] print_req_error: I/O error, dev loop1, sector 5300208 -[2068814.523243] print_req_error: 54 callbacks suppressed -[2068814.523244] print_req_error: I/O error, dev loop1, sector 9494400 -[2068814.523474] print_req_error: I/O error, dev loop1, sector 9494616 -[2068814.523550] print_req_error: I/O error, dev loop1, sector 5300224 -[2068814.523617] print_req_error: I/O error, dev loop1, sector 5300232 -[2068814.561992] print_req_error: I/O error, dev loop1, sector 85888 -[2068814.562134] print_req_error: I/O error, dev loop1, sector 86000 -[2068814.562268] print_req_error: I/O error, dev loop1, sector 20480 -[2068814.562403] print_req_error: I/O error, dev loop1, sector 20488 -[2068814.572282] print_req_error: I/O error, dev loop1, sector 5300096 -[2068814.572433] print_req_error: I/O error, dev loop1, sector 5300208 -[2068872.014861] print_req_error: 54 callbacks suppressed -[2068872.014862] print_req_error: I/O error, dev loop1, sector 9494400 -[2068872.015006] print_req_error: I/O error, dev loop1, sector 9494616 -[2068872.015063] print_req_error: I/O error, dev loop1, sector 5300224 -[2068872.015188] print_req_error: I/O error, dev loop1, sector 5300232 -[2068872.072645] print_req_error: I/O error, dev loop1, sector 85888 -[2068872.072801] print_req_error: I/O error, dev loop1, sector 86000 -[2068872.072956] print_req_error: I/O error, dev loop1, sector 20480 -[2068872.073111] print_req_error: I/O error, dev loop1, sector 20488 -[2068872.083090] print_req_error: I/O error, dev loop1, sector 5300096 -[2068872.083243] print_req_error: I/O error, dev loop1, sector 5300208 -[2071293.216887] device enx00e04c68000e entered promiscuous mode -[2071293.217414] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2071976.386838] device enx00e04c68000e left promiscuous mode -[2071978.750492] device enx00e04c68000e entered promiscuous mode -[2071978.750885] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2072001.745762] device enx00e04c68000e left promiscuous mode -[2075186.671912] device enx00e04c68000e entered promiscuous mode -[2075186.672377] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2075198.233081] device enx00e04c68000e left promiscuous mode -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo dmesfgg -c -[?2004l[sudo] password for rminnich: -[1279848.891575] usb 4-1.1: new high-speed USB device number 12 using ehci-pci -[1279849.000016] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1279849.000021] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1279849.000561] hub 4-1.1:1.0: USB hub found -[1279849.000728] hub 4-1.1:1.0: 7 ports detected -[1279849.287604] usb 4-1.1.4: new high-speed USB device number 13 using ehci-pci -[1279849.401482] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[1279849.401488] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1279849.401492] usb 4-1.1.4: Product: servo:810-10010-02 -[1279849.401495] usb 4-1.1.4: Manufacturer: Google Inc -[1279849.401497] usb 4-1.1.4: SerialNumber: 686203-00010 -[1279849.487559] usb 4-1.1.5: new high-speed USB device number 14 using ehci-pci -[1279849.601329] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[1279849.601332] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1279849.601334] usb 4-1.1.5: Product: servo:810-10010-02 -[1279849.601336] usb 4-1.1.5: Manufacturer: Google Inc -[1279849.601337] usb 4-1.1.5: SerialNumber: 686203-00010 -[1279857.370503] usb 4-1.1: USB disconnect, device number 12 -[1279857.370509] usb 4-1.1.4: USB disconnect, device number 13 -[1279857.371210] usb 4-1.1.5: USB disconnect, device number 14 -[1280932.285397] usb 4-1.1: new high-speed USB device number 15 using ehci-pci -[1280932.397765] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1280932.397771] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1280932.398395] hub 4-1.1:1.0: USB hub found -[1280932.398544] hub 4-1.1:1.0: 7 ports detected -[1280932.570887] usb 4-1.1: USB disconnect, device number 15 -[1280967.097079] usb 4-1.1: new high-speed USB device number 16 using ehci-pci -[1280967.205726] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1280967.205732] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1280967.206265] hub 4-1.1:1.0: USB hub found -[1280967.206429] hub 4-1.1:1.0: 7 ports detected -[1280967.497076] usb 4-1.1.4: new high-speed USB device number 17 using ehci-pci -[1280967.611211] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[1280967.611216] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1280967.611220] usb 4-1.1.4: Product: servo:810-10010-02 -[1280967.611223] usb 4-1.1.4: Manufacturer: Google Inc -[1280967.611226] usb 4-1.1.4: SerialNumber: 686203-00071 -[1280967.697102] usb 4-1.1.5: new high-speed USB device number 18 using ehci-pci -[1280967.815087] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[1280967.815092] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1280967.815096] usb 4-1.1.5: Product: servo:810-10010-02 -[1280967.815099] usb 4-1.1.5: Manufacturer: Google Inc -[1280967.815102] usb 4-1.1.5: SerialNumber: 686203-00071 -[1296500.416011] usb 4-1.2.3.2: new high-speed USB device number 19 using ehci-pci -[1296500.529285] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1296500.529287] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1296500.529289] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1296500.529290] usb 4-1.2.3.2: Manufacturer: Linksys -[1296500.529291] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1296500.615957] usb 4-1.2.3.2: reset high-speed USB device number 19 using ehci-pci -[1296500.765293] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1296500.861448] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1296500.979426] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296500.989098] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296519.485261] show_signal_msg: 7043 callbacks suppressed -[1296519.485265] cinnamon-settin[64959]: segfault at c0 ip 00007f4539f4c243 sp 00007ffe78a8b7b8 error 4 in libnetwork.so[7f4539f34000+84000] -[1296519.485277] Code: 8b 38 e8 88 89 ff ff 48 8b 3d 09 df 26 00 be 50 00 00 00 e8 ef 6e ff ff 48 89 df 48 8b 40 30 5b ff e0 0f 1f 44 00 00 48 8b 07 a0 c0 00 00 00 0f 1f 80 00 00 00 00 41 57 41 56 41 55 41 54 55 -[1296583.578384] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1296583.578943] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296668.539331] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296671.386242] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296689.079721] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296742.369617] usb 4-1.2.3.2: USB disconnect, device number 19 -[1296742.371350] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1296743.873559] usb 4-1.2.3.2: new high-speed USB device number 20 using ehci-pci -[1296743.983891] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1296743.983897] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1296743.983900] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1296743.983903] usb 4-1.2.3.2: Manufacturer: Linksys -[1296743.983906] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1296744.069625] usb 4-1.2.3.2: reset high-speed USB device number 20 using ehci-pci -[1296744.219739] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1296744.263883] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1296744.299688] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296744.308319] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296813.227066] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1296813.227686] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296857.261522] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296860.299895] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296945.324423] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296948.139304] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296966.190938] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297090.251849] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297142.449724] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297145.291359] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297163.114227] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297232.843373] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297317.517285] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297320.332034] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297337.674679] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297407.500206] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297492.427703] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297495.244211] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297512.970958] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297637.259642] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297689.353894] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297692.172541] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297709.619015] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297834.220184] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297886.316741] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297889.132592] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297907.181077] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298031.692241] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298084.012631] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298086.892635] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298104.621510] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298228.812549] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298281.078585] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298283.851702] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298302.028864] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298426.348224] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298478.457116] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298481.259878] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298498.669250] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298623.308664] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298675.404758] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298678.188932] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298695.693687] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298820.332722] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298872.396748] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298875.275980] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298893.259784] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299017.708904] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299069.997801] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299072.812820] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299090.220603] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299214.764985] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299266.956859] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299269.837229] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299287.820000] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299412.716668] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299464.588408] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299467.405058] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299485.198038] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299609.388976] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299661.709461] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299664.524994] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299681.999017] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299806.508886] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299858.765021] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299861.549053] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299878.994525] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300003.628819] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300055.913831] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300058.765475] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300076.174466] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300201.005398] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300252.974666] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300255.789267] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300273.838511] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300398.412693] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300450.765946] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300453.581097] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300471.405128] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300595.500356] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300647.820871] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300650.732403] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300668.752254] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300768.588917] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300833.761591] usb 4-1.2.4: USB disconnect, device number 5 -[1300837.054974] usb 4-1.2.4: new high-speed USB device number 21 using ehci-pci -[1300837.163519] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1300837.163525] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1300837.164259] usb 4-1.2.4: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1300837.164264] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1300837.164268] usb 4-1.2.4: Product: EM100PRO -[1300837.164271] usb 4-1.2.4: Manufacturer: DediProg -[1300850.445827] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300853.516700] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300885.964716] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300889.101347] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301267.181184] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301270.284807] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301431.660359] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301434.700601] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301625.742531] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301634.125044] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301718.507813] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301721.581444] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301724.813450] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301727.853571] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301813.290086] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301816.109722] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301833.870351] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301958.605678] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302010.894675] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302013.709155] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302031.756775] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302090.317678] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302175.565949] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302178.381734] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302196.749831] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302296.654023] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302391.883133] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302395.726283] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302524.629861] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302527.662055] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302624.590332] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302628.622209] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302757.324994] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302760.462147] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302856.461275] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302860.557659] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302988.685324] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302992.910070] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303088.909842] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303093.070097] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303221.261258] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303225.454383] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303321.074027] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303325.197912] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303440.655698] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303565.027530] usb 4-1.2.3.2: USB disconnect, device number 20 -[1303565.029652] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1303566.529654] usb 4-1.2.3.2: new high-speed USB device number 22 using ehci-pci -[1303566.643662] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1303566.643667] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1303566.643671] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1303566.643674] usb 4-1.2.3.2: Manufacturer: Linksys -[1303566.643677] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1303566.729681] usb 4-1.2.3.2: reset high-speed USB device number 22 using ehci-pci -[1303566.883734] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1303566.926943] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1303566.962399] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1303566.970680] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1369297.185614] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1369297.186192] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369381.572093] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369384.546343] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369464.385640] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369467.490493] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369491.555122] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369494.625939] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369580.131653] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369583.013817] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369601.504522] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369925.601617] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370010.272651] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370013.090923] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370031.656399] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370473.955069] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370559.106942] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370562.018813] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370579.842606] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372229.890928] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372314.884700] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372317.698952] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372335.236592] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372514.787008] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372600.227397] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372603.043160] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372620.995161] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372725.495715] usb 4-1.2.3.2: USB disconnect, device number 22 -[1372725.497952] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1372747.737833] usb 4-1.2.3.2: new high-speed USB device number 23 using ehci-pci -[1372747.852247] usb 4-1.2.3.2: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00 -[1372747.852253] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1372747.852256] usb 4-1.2.3.2: Product: USB 10/100/1000 LAN -[1372747.852259] usb 4-1.2.3.2: Manufacturer: Realtek -[1372747.852262] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1372747.945832] usb 4-1.2.3.2: reset high-speed USB device number 23 using ehci-pci -[1372748.095699] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1372748.179723] r8152 4-1.2.3.2:1.0 enx00e04c68000e: renamed from eth0 -[1372748.256713] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1372748.265399] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373513.956230] IPv6: ADDRCONF(NETDEV_CHANGE): enx00e04c68000e: link becomes ready -[1373513.956832] r8152 4-1.2.3.2:1.0 enx00e04c68000e: carrier on -[1373567.016830] net_ratelimit: 32 callbacks suppressed -[1373567.016838] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.021063] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.025323] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.029556] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.033808] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.038064] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.042308] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.046571] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.050829] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.055064] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.223813] usb 4-1.2.3.2: USB disconnect, device number 23 -[1373595.877273] usb 4-1.4: new high-speed USB device number 24 using ehci-pci -[1373595.991449] usb 4-1.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00 -[1373595.991454] usb 4-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1373595.991458] usb 4-1.4: Product: USB 10/100/1000 LAN -[1373595.991461] usb 4-1.4: Manufacturer: Realtek -[1373595.991464] usb 4-1.4: SerialNumber: 000001000000 -[1373596.077280] usb 4-1.4: reset high-speed USB device number 24 using ehci-pci -[1373596.227325] r8152 4-1.4:1.0 eth0: v1.09.9 -[1373596.273179] r8152 4-1.4:1.0 enx00e04c68000e: renamed from eth0 -[1373596.340503] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373596.349125] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373599.093121] IPv6: ADDRCONF(NETDEV_CHANGE): enx00e04c68000e: link becomes ready -[1373599.093699] r8152 4-1.4:1.0 enx00e04c68000e: carrier on -[1390218.115806] usb 2-2.3: USB disconnect, device number 5 -[1390218.390659] usb 2-2.3: new low-speed USB device number 6 using xhci_hcd -[1390218.498873] usb 2-2.3: New USB device found, idVendor=046d, idProduct=c03d, bcdDevice=20.00 -[1390218.498876] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1390218.498878] usb 2-2.3: Product: USB-PS/2 Optical Mouse -[1390218.498879] usb 2-2.3: Manufacturer: Logitech -[1390218.519559] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:046D:C03D.0005/input/input17 -[1390218.519870] hid-generic 0003:046D:C03D.0005: input,hidraw3: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:08:00.0-2.3/input0 -[1392848.636577] usb 4-1.2.4: USB disconnect, device number 21 -[1392854.241802] usb 4-1.2.4: new high-speed USB device number 25 using ehci-pci -[1392854.350539] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1392854.350545] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1392854.351160] usb 4-1.2.4: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1392854.351165] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1392854.351168] usb 4-1.2.4: Product: EM100PRO -[1392854.351172] usb 4-1.2.4: Manufacturer: DediProg -[1814996.857387] usb 4-1.2.3.1: USB disconnect, device number 6 -[1814996.857775] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0 -[1814996.857813] ftdi_sio 4-1.2.3.1:1.0: device disconnected -[1814996.999438] usb 4-1.2.3.3: USB disconnect, device number 8 -[1814997.098896] keyspan_1 ttyUSB1: Keyspan 1 port adapter converter now disconnected from ttyUSB1 -[1814997.098922] keyspan 4-1.2.3.3:1.0: device disconnected -[1814997.880138] usb 4-1.2.3: USB disconnect, device number 4 -[1815004.254951] usb 4-1.2.3: new full-speed USB device number 26 using ehci-pci -[1815004.370722] usb 4-1.2.3: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 -[1815004.370728] usb 4-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1815004.370731] usb 4-1.2.3: Product: FT232R USB UART -[1815004.370734] usb 4-1.2.3: Manufacturer: FTDI -[1815004.370737] usb 4-1.2.3: SerialNumber: AL009FRA -[1815004.373681] ftdi_sio 4-1.2.3:1.0: FTDI USB Serial Device converter detected -[1815004.373736] usb 4-1.2.3: Detected FT232RL -[1815004.374341] usb 4-1.2.3: FTDI USB Serial Device converter now attached to ttyUSB0 -[1815022.968025] usb 4-1.2.4: USB disconnect, device number 25 -[1815066.458397] usb 4-1.3: new high-speed USB device number 27 using ehci-pci -[1815066.574710] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1815066.574712] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1815066.575086] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1815066.575088] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1815066.575090] usb 4-1.3: Product: EM100PRO -[1815066.575091] usb 4-1.3: Manufacturer: DediProg -[1815099.734063] usb 4-1.2.4: new full-speed USB device number 28 using ehci-pci -[1815099.861193] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[1815099.861199] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1815099.861202] usb 4-1.2.4: Product: Keyspan USA-19H -[1815099.861205] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[1815099.862154] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[1815099.862402] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB1 -[1985672.360758] usb 4-1.3: USB disconnect, device number 27 -[1985677.189752] usb 4-1.3: new high-speed USB device number 29 using ehci-pci -[1985677.298515] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1985677.298520] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1985677.299083] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1985677.299088] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1985677.299091] usb 4-1.3: Product: EM100PRO -[1985677.299094] usb 4-1.3: Manufacturer: DediProg -[1986064.786992] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null) -[1986066.818559] EXT4-fs (loop1): mounting ext2 file system using the ext4 subsystem -[1986066.823584] EXT4-fs (loop1): mounted filesystem without journal. Opts: (null) -[1986068.183403] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null) -[1986069.102103] EXT4-fs (loop1p3): mounting ext2 file system using the ext4 subsystem -[1986069.107537] EXT4-fs (loop1p3): mounted filesystem without journal. Opts: (null) -[1986069.119832] EXT4-fs (loop1p1): mounted filesystem with ordered data mode. Opts: (null) -[1986069.129592] EXT4-fs (loop1p8): mounted filesystem with ordered data mode. Opts: (null) -[2004015.221731] print_req_error: I/O error, dev loop1, sector 9494400 -[2004015.221866] print_req_error: I/O error, dev loop1, sector 9494616 -[2004015.221901] print_req_error: I/O error, dev loop1, sector 5300224 -[2004015.221970] print_req_error: I/O error, dev loop1, sector 5300232 -[2004015.259406] print_req_error: I/O error, dev loop1, sector 85888 -[2004015.259489] print_req_error: I/O error, dev loop1, sector 86000 -[2004015.259526] print_req_error: I/O error, dev loop1, sector 20480 -[2004015.259598] print_req_error: I/O error, dev loop1, sector 20488 -[2004015.269837] print_req_error: I/O error, dev loop1, sector 5300096 -[2004015.269910] print_req_error: I/O error, dev loop1, sector 5300208 -[2004073.442332] print_req_error: 54 callbacks suppressed -[2004073.442333] print_req_error: I/O error, dev loop1, sector 9494400 -[2004073.442439] print_req_error: I/O error, dev loop1, sector 9494616 -[2004073.442489] print_req_error: I/O error, dev loop1, sector 5300224 -[2004073.442585] print_req_error: I/O error, dev loop1, sector 5300232 -[2004073.503462] print_req_error: I/O error, dev loop1, sector 85888 -[2004073.503602] print_req_error: I/O error, dev loop1, sector 86000 -[2004073.503743] print_req_error: I/O error, dev loop1, sector 20480 -[2004073.503883] print_req_error: I/O error, dev loop1, sector 20488 -[2004073.514021] print_req_error: I/O error, dev loop1, sector 5300096 -[2004073.514176] print_req_error: I/O error, dev loop1, sector 5300208 -[2025609.801518] print_req_error: 54 callbacks suppressed -[2025609.801519] print_req_error: I/O error, dev loop1, sector 9494400 -[2025609.801723] print_req_error: I/O error, dev loop1, sector 9494616 -[2025609.801788] print_req_error: I/O error, dev loop1, sector 5300224 -[2025609.801888] print_req_error: I/O error, dev loop1, sector 5300232 -[2025609.848723] print_req_error: I/O error, dev loop1, sector 85888 -[2025609.848876] print_req_error: I/O error, dev loop1, sector 86000 -[2025609.848962] print_req_error: I/O error, dev loop1, sector 20480 -[2025609.849034] print_req_error: I/O error, dev loop1, sector 20488 -[2025609.880213] print_req_error: I/O error, dev loop1, sector 5300096 -[2025609.880360] print_req_error: I/O error, dev loop1, sector 5300208 -[2025668.370560] print_req_error: 54 callbacks suppressed -[2025668.370562] print_req_error: I/O error, dev loop1, sector 9494400 -[2025668.370709] print_req_error: I/O error, dev loop1, sector 9494616 -[2025668.370772] print_req_error: I/O error, dev loop1, sector 5300224 -[2025668.370897] print_req_error: I/O error, dev loop1, sector 5300232 -[2025668.426083] print_req_error: I/O error, dev loop1, sector 85888 -[2025668.426237] print_req_error: I/O error, dev loop1, sector 86000 -[2025668.426319] print_req_error: I/O error, dev loop1, sector 20480 -[2025668.426464] print_req_error: I/O error, dev loop1, sector 20488 -[2025668.436546] print_req_error: I/O error, dev loop1, sector 5300096 -[2025668.436684] print_req_error: I/O error, dev loop1, sector 5300208 -[2047210.915760] print_req_error: 54 callbacks suppressed -[2047210.915762] print_req_error: I/O error, dev loop1, sector 9494400 -[2047210.915946] print_req_error: I/O error, dev loop1, sector 9494616 -[2047210.916004] print_req_error: I/O error, dev loop1, sector 5300224 -[2047210.916094] print_req_error: I/O error, dev loop1, sector 5300232 -[2047211.010384] print_req_error: I/O error, dev loop1, sector 85888 -[2047211.010546] print_req_error: I/O error, dev loop1, sector 86000 -[2047211.010631] print_req_error: I/O error, dev loop1, sector 20480 -[2047211.010777] print_req_error: I/O error, dev loop1, sector 20488 -[2047211.054805] print_req_error: I/O error, dev loop1, sector 5300096 -[2047211.054960] print_req_error: I/O error, dev loop1, sector 5300208 -[2047271.372119] print_req_error: 54 callbacks suppressed -[2047271.372121] print_req_error: I/O error, dev loop1, sector 9494400 -[2047271.372242] print_req_error: I/O error, dev loop1, sector 9494616 -[2047271.372305] print_req_error: I/O error, dev loop1, sector 5300224 -[2047271.372403] print_req_error: I/O error, dev loop1, sector 5300232 -[2047271.374552] print_req_error: I/O error, dev loop1, sector 85888 -[2047271.374626] print_req_error: I/O error, dev loop1, sector 86000 -[2047271.374777] print_req_error: I/O error, dev loop1, sector 20480 -[2047271.374838] print_req_error: I/O error, dev loop1, sector 20488 -[2047271.388727] print_req_error: I/O error, dev loop1, sector 5300096 -[2047271.388886] print_req_error: I/O error, dev loop1, sector 5300208 -[2068814.523243] print_req_error: 54 callbacks suppressed -[2068814.523244] print_req_error: I/O error, dev loop1, sector 9494400 -[2068814.523474] print_req_error: I/O error, dev loop1, sector 9494616 -[2068814.523550] print_req_error: I/O error, dev loop1, sector 5300224 -[2068814.523617] print_req_error: I/O error, dev loop1, sector 5300232 -[2068814.561992] print_req_error: I/O error, dev loop1, sector 85888 -[2068814.562134] print_req_error: I/O error, dev loop1, sector 86000 -[2068814.562268] print_req_error: I/O error, dev loop1, sector 20480 -[2068814.562403] print_req_error: I/O error, dev loop1, sector 20488 -[2068814.572282] print_req_error: I/O error, dev loop1, sector 5300096 -[2068814.572433] print_req_error: I/O error, dev loop1, sector 5300208 -[2068872.014861] print_req_error: 54 callbacks suppressed -[2068872.014862] print_req_error: I/O error, dev loop1, sector 9494400 -[2068872.015006] print_req_error: I/O error, dev loop1, sector 9494616 -[2068872.015063] print_req_error: I/O error, dev loop1, sector 5300224 -[2068872.015188] print_req_error: I/O error, dev loop1, sector 5300232 -[2068872.072645] print_req_error: I/O error, dev loop1, sector 85888 -[2068872.072801] print_req_error: I/O error, dev loop1, sector 86000 -[2068872.072956] print_req_error: I/O error, dev loop1, sector 20480 -[2068872.073111] print_req_error: I/O error, dev loop1, sector 20488 -[2068872.083090] print_req_error: I/O error, dev loop1, sector 5300096 -[2068872.083243] print_req_error: I/O error, dev loop1, sector 5300208 -[2071293.216887] device enx00e04c68000e entered promiscuous mode -[2071293.217414] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2071976.386838] device enx00e04c68000e left promiscuous mode -[2071978.750492] device enx00e04c68000e entered promiscuous mode -[2071978.750885] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2072001.745762] device enx00e04c68000e left promiscuous mode -[2075186.671912] device enx00e04c68000e entered promiscuous mode -[2075186.672377] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2075198.233081] device enx00e04c68000e left promiscuous mode -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo dmesg -c -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004lbin.reset commentsetupcrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LIST removeBMCcrap.bin RUN3 xxx -blacklist config-4.13.0-rc7 EATIT ipmisucks.bin LOG removemorecrap.bin tyan7102.bin yyy -bzImage DIT fail.bin L Makefile removesetupcrap.bin uinit -commentmorecrap.bin dxeclean.bin futk.remove.99 linux NOTES removesomecrap.bin x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ci vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 14L, 309C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 5 because this piece of shit can't take it" -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -r -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h -[?2004l[?1l>[?1049l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l -[1]+ Stopped vi DXECLEANER -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lvi DXECLEANER -[?2004h]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?1049h[?1h=[?2004h[?12h[?12l[?25l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 5 because this piece of shit can't take it" -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -r -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 7,1All[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l0[?25h[?25l9,1 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25lecho "./0" > /dev/ttyUSB112,1All]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25l1[?25h[?25l -~ 11,1All[?25h[?25lsleep 512,1All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 15L, 335C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': .': futk /tmp/x fv ./DXECLEANER clean[1@/f': ./futk ./futk.remove.99/99 fv[1@u ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./futk ./futk.remove.99/99 fv -[?2004lbash: ./futk: No such file or directory -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./futk ./futk.remove.99/99 fv -[?2004l2018/12/20 09:53:29 Found 311 things -[311]OK ./DXECLEANER clane   ean -2018/12/20 09:53:41 script is ./DXECLEANER -2018/12/20 09:53:48 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2018/12/20 09:53:48 removed [0xc00cfceb80] -+ echo TEST /tmp/futk329102038/1 -TEST /tmp/futk329102038/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk329102038/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 09:54:25 Listening on 192.168.0.1:8080 at 2018-12-20 09:54:25.378036454 -0800 PST m=+0.005088899 -2018/12/20 09:57:25 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 09:57:25.378514264 -0800 PST m=+180.005566547 -2018/12/20 09:57:25 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 09:57:25 We are now done ...................... -2018/12/20 09:57:25 accept tcp 192.168.0.1:8080: i/o timeout -[311 [/tmp/futk329102038/0] exit status 1]OK -[311 [/tmp/futk329102038/0] exit status 1]OK -[311 [/tmp/futk329102038/0] exit status 1]OK -[311 [/tmp/futk329102038/0] exit status 1]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./futk remove9 -removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove -removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove -removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk removedfutk.remove.99/50 fv ./DXECLEANER futk.remove.99/50 -[?2004l+ echo TEST futk.remove.99/50 -TEST futk.remove.99/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d futk.remove.99/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 09:58:45 Listening on 192.168.0.1:8080 at 2018-12-20 09:58:45.019291348 -0800 PST m=+0.004257262 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 15L, 335C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 5 because this piece of shit can't take it" -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -r -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l1[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l9,1 [?25h[?25l10,1[?25h[?25l-- INSERT --11,1Top11,1All]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25lk2[?25h[?25l11,1All[?25h[?25l0[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l-- INSERT --10,17All[?25h[?25l0 because this piece of shit can't take it"8[?25h[?25l10,17All[?25h[?25l1,1 [?25h[?25l~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ --No lines in buffer--0,0-1All[?25h[?25l[?25h[?25l16 more lines; before #3 1 seconds ago#!/bin/bash -set -eset -xecho TEST $1echo "date" > /dev/ttyUSB1echo "./0" > /dev/ttyUSB1echo "./pg" > /dev/ttyUSB1sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -recho "date" > /dev/ttyUSB1echo "sleeping 50 because this piece of shit can't take it"kecho "./0" > /dev/ttyUSB1sleep 5echo "./1" > /dev/ttyUSB1sleep 10./uinit -r1,1All[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l0-1[?25h[?25l-- INSERT --11,1All[?25h[?25ls2[?25h[?25ll3[?25h[?25le4[?25h[?25le5[?25h[?25lp6[?25h[?25l7[?25h[?25l58[?25h[?25l09[?25h[?25l11,8All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 16L, 345C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [32@f': ./DXECLEANER futk.remove.99/50[1@u ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER futk.remove.99/50  -[?2004l+ echo TEST futk.remove.99/50 -TEST futk.remove.99/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d futk.remove.99/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:05:33 Listening on 192.168.0.1:8080 at 2018-12-20 10:05:33.942521123 -0800 PST m=+0.004347236 -2018/12/20 10:08:33 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 10:08:33.942872927 -0800 PST m=+180.004698842 -2018/12/20 10:08:33 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 10:08:33 We are now done ...................... -2018/12/20 10:08:33 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER futk.remove.99/50 tmp/x/tmp/x -[?2004l+ echo TEST /tmp/x -TEST /tmp/x -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/x -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:10:51 Listening on 192.168.0.1:8080 at 2018-12-20 10:10:51.299328523 -0800 PST m=+0.003712910 -2018/12/20 10:13:17 Accepted &{{0xc000174000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 10:14:45 Accepted &{{0xc000174100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:14:45 We are now done ...................... -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER /tmp/xfyuutk.remove.99/50 -[?2004l+ echo TEST futk.remove.99/50 -TEST futk.remove.99/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d futk.remove.99/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:20:47 Listening on 192.168.0.1:8080 at 2018-12-20 10:20:47.915444974 -0800 PST m=+0.004240111 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER futk.remove.99/5098 -[?2004l+ echo TEST futk.remove.99/98 -TEST futk.remove.99/98 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d futk.remove.99/98 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:24:31 Listening on 192.168.0.1:8080 at 2018-12-20 10:24:31.312246003 -0800 PST m=+0.005015879 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk futk.remove.99/98 bzImage splat //tmp98.splat saverom -[?2004lpanic: runtime error: invalid memory address or nil pointer dereference [recovered] - panic: runtime error: invalid memory address or nil pointer dereference -[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0x51c027] - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc000089ca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x558a00, 0x6a7000) - /usr/local/src/projects/nobinaryblobs/go1.6/src/runtime/panic.go:513 +0x1b9 -github.com/linuxboot/fiano/pkg/visitors.(*Find).Run(0xc0000ae1c0, 0x0, 0x0, 0xc0000899b8, 0x2) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/pkg/visitors/find.go:41 +0x37 -github.com/linuxboot/fiano/pkg/visitors.(*ReplacePE32).Run(0xc0000ae000, 0x0, 0x0, 0x24, 0xc00009e090) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/pkg/visitors/replacepe32.go:36 +0xf5 -github.com/linuxboot/fiano/pkg/visitors.ExecuteCLI(0x0, 0x0, 0xc0000a6040, 0x1, 0x1, 0x1, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/pkg/visitors/cli.go:68 +0x6d -main.runit(0xc0000b03f0, 0x3, 0x3, 0x7, 0xc0000a62c0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:336 +0x189 -main.splat(0x5aed00, 0xc0000dc000) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:358 +0xc9 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x5aed00, 0xc0000dc000, 0xc00009e060, 0x30) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x5aed00, 0xc0000dc000, 0xc00009e060, 0x30, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:526 +0x15c -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk futk.remove.99/98 bzImage splat 98.splat saverom[1@f[1@v[1@ -[?2004l2018/12/20 10:27:17 Found 312 things -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER -[?2004l+ echo TEST -TEST -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d -r - -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration - - -Chip set to W25Q256FV -Could not open upload file: No such file or directory -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER 98.slplat -[?2004l+ echo TEST 98.splat -TEST 98.splat -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d 98.splat -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently stopped -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:28:57 Listening on 192.168.0.1:8080 at 2018-12-20 10:28:57.130349689 -0800 PST m=+0.003203771 -2018/12/20 10:31:17 Accepted &{{0xc000148100}} -2018/12/20 10:31:17 We are now done ...................... -2018/12/20 10:31:17 gob: bad data: undefined type arrayType = struct { CommonType CommonType = struct { Name string; Id int; }; Elem int; Len int; } -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat commentmorecrap.bin dxeclean.bin futk.remove.99 linux NOTES removesomecrap.bin x.bin -bin.reset commentsetupcrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LIST removeBMCcrap.bin RUN3 xxx -blacklist config-4.13.0-rc7 EATIT ipmisucks.bin LOG removemorecrap.bin tyan7102.bin yyy -bzImage DIT fail.bin L Makefile removesetupcrap.bin uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github -.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -2018/12/20 10:32:22 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2018/12/20 10:32:22 Filename is /tmp/initramfs.linux_amd64.cpio -2018/12/20 10:32:29 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 2852697 Dec 20 10:32 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -[?2004l2018/12/20 10:32:36 here we are in uinit -2018/12/20 10:32:36 UINIT uid is 156049 -2018/12/20 10:32:36 Now dial 192.168.0.1:8080 -2018/12/20 10:32:36 Dial went poorly -2018/12/20 10:32:36 We are now done ...................... -2018/12/20 10:32:36 dial tcp 192.168.0.1:8080: connect: connection refused -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -r -[?2004l2018/12/20 10:32:43 Listening on 192.168.0.1:8080 at 2018-12-20 10:32:43.520864341 -0800 PST m=+0.003818012 -2018/12/20 10:32:48 Accepted &{{0xc000020180}} -2018/12/20 10:32:48 We are now done ...................... -2018/12/20 10:32:48 gob: bad data: undefined type arrayType = struct { CommonType CommonType = struct { Name string; Id int; }; Elem int; Len int; } -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mak e b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/utsrelease.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5141 kB -CRC d3d66d47 -Kernel: arch/x86/boot/bzImage is ready (#73) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5279792 Dec 20 10:33 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [15@f': more Makefileu': futk futk.remove.99/98 fv bzImage splat 98.splat saverom [1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk futk.remove.99/98 fv bzImage splat 98.splat saverom -[?2004l2018/12/20 10:33:16 Found 312 things -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [23@D': ./DXECLEANER 98.splat[1@X ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER 98.splat  -[?2004l+ echo TEST 98.splat -TEST 98.splat -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d 98.splat -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:34:43 Listening on 192.168.0.1:8080 at 2018-12-20 10:34:43.714596027 -0800 PST m=+0.004301378 -2018/12/20 10:36:59 Accepted &{{0xc000020100}} -2018/12/20 10:36:59 We are now done ...................... -2018/12/20 10:36:59 gob: bad data: undefined type arrayType = struct { CommonType CommonType = struct { Name string; Id int; }; Elem int; Len int; } -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -h -[?2004lflag needs an argument: -h -Usage of ./uinit: - -C configure the network (default true) - -d string - directory to serve (default ".") - -h string - hostname (default "192.168.0.1") - -me string - dut hostname (default "192.168.0.2") - -p string - port number (default "8080") - -r run as the DUT controller -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -C false && & -[?2004l[1] 204310 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ 2018/12/20 10:37:25 here we are in uinit -2018/12/20 10:37:25 UINIT uid is 156049 -2018/12/20 10:37:25 Now dial 192.168.0.1:8080 -2018/12/20 10:37:25 Dial went poorly -2018/12/20 10:37:25 We are now done ...................... -2018/12/20 10:37:25 dial tcp 192.168.0.1:8080: connect: connection refused -./uinit  -[?2004l[1]+ Exit 1 ./uinit -C false -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uiitnit -r & ./uinit -C C=false -[?2004l[1] 204368 -2018/12/20 10:37:41 here we are in uinit -2018/12/20 10:37:41 UINIT uid is 156049 -2018/12/20 10:37:41 Now dial 192.168.0.1:8080 -2018/12/20 10:37:41 Listening on 192.168.0.1:8080 at 2018-12-20 10:37:41.590045582 -0800 PST m=+0.003383016 -2018/12/20 10:37:41 Start the RPC server -2018/12/20 10:37:41 rpc server is &{{{0 0} {} map[] 0} {0 0} {0 0} } -2018/12/20 10:37:41 Accepted &{{0xc000020100}} -2018/12/20 10:37:41 Serve and protect -2018/12/20 10:37:41 welcome -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:37:41 reboot returns -2018/12/20 10:37:41 operation not permitted -Command.Reboot(&{0s}): -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github -.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ~/go/src/github.com/linuxboot/dut/uinit/ -[?2004l~/go/src/github.com/linuxboot/dut/uinit /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ go build -[?2004l[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ (reverse-i-search)`':.': pushd ~/go/src/github.com/linuxboot/dut/uinit/ /': ./uinit -r & ./uinit -C=false ]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ ./uinit -r & ./uinit -C=false -[?2004l[2] 204773 -2018/12/20 10:38:51 here we are in uinit -2018/12/20 10:38:51 listen tcp 192.168.0.1:8080: bind: address already in use -2018/12/20 10:38:51 UINIT uid is 156049 -2018/12/20 10:38:51 We are now done ...................... -2018/12/20 10:38:51 Now dial 192.168.0.1:8080 -2018/12/20 10:38:51 listen tcp 192.168.0.1:8080: bind: address already in use -2018/12/20 10:38:51 Start the RPC server -2018/12/20 10:38:51 rpc server is &{{{0 0} {} map[] 0} {0 0} {0 0} } -2018/12/20 10:38:51 Accepted &{{0xc000020200}} -2018/12/20 10:38:51 Serve and protect -2018/12/20 10:38:51 welcome -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:38:51 We are now done ...................... -2018/12/20 10:38:51 And uinit is all done. -2018/12/20 10:38:51 We are now done ...................... -[1]- Done ./uinit -r (wd: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) -(wd now: ~/go/src/github.com/linuxboot/dut/uinit) -[2]+ Exit 1 ./uinit -r -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ fg\ -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ ps ax | grep uinit -[?2004l204865 pts/27 S+ 0:00 grep --color=auto uinit -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ ./uinit C -C=false -[?2004l2018/12/20 10:39:40 here we are in uinit -2018/12/20 10:39:40 UINIT uid is 156049 -2018/12/20 10:39:40 Now dial 192.168.0.1:8080 -2018/12/20 10:39:40 Dial went poorly -2018/12/20 10:39:40 We are now done ...................... -2018/12/20 10:39:40 dial tcp 192.168.0.1:8080: connect: connection refused -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ popd -[?2004l/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l bzImage -[?2004l-rw-r----- 1 rminnich primarygroup 5578800 Nov 20 10:49 bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ rm bzImage -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ qemu (reverse-i-search)`': [15@s': ls -l bzImage[9@p': ./DXECLEANER 98.splat[1@l[1@a[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER 98.splat hsito (reverse-i-search)`': f': futk futk.remove.99/98 fv bzImage splat 98.splat saverom [1@u[1@t [8@failed reverse-i-search)`futh ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk futk.remove.99/98 fv bzImage splat 98.splat saverom[1@l[1@i[1@n[3@ux/[1@a[1@r[3@ch/[1@x[1@8[1@6[1@/[1@b[1@o[3@ot/[1@b[1@zImage splat 98.splat save erom ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$  - -[?2004l2018/12/20 10:41:35 Found 312 things - - - -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': .': futk futk.remove.99/98 fv linux/arch/x86/boot/bzImage splat 98.splat saverom /': ./uinit -C=falseD': ./DXECLEANER 98.splat  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER 98.splat  -[?2004l+ echo TEST 98.splat -TEST 98.splat -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d 98.splat -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:43:04 Listening on 192.168.0.1:8080 at 2018-12-20 10:43:04.832175106 -0800 PST m=+0.004296397 -2018/12/20 10:45:28 Accepted &{{0xc000154080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 10:47:35 Accepted &{{0xc000154180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:47:35 We are now done ...................... -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vo <./DXECLEANER 98.splat futk futk.remove.99/98 fv linux/arch/x86/boot/bzImage splat 98.splat save erom ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$  - vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 323L, 9502C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init githubb.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \comment here \comment PcRtc \comment FpgaDxe \comment LegacyInterrupt \comment SmartTimer \comment LegacySredir \comment LegacyRegion2 \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l1,1 [?25h[?25l0,0-1[?25h[?25l9,1-8 [?25h[?25l8,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l9,1-8 [?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25ld:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean11,1Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l2,1-8[?25h[?25l-- INSERT --13,1Top13,1Top[?25h[?25l13,0-1Top[?25h[?25l2,1-8[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l2-9[?25h[?25l3-10[?25h[?25l4-11[?25h[?25l5-12[?25h[?25l6-13[?25h[?25l7-14[?25h[?25l8-15[?25h[?25l9-16[?25h[?25l10-17[?25h[?25l9-16 [?25h[?25l8-15[?25h[?25l7-14[?25h[?25lyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot//bzImage splat drop /tmp/x saverom [?25h[?25lan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bbzImage splat drop /tmp/x saverom [?25h[?25ln7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzzImage splat drop /tmp/x saverom [?25h[?25l7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzIImage splat drop /tmp/x saverom [?25h[?25l102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImmage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l02.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImaage splat drop /tmp/x saverom [?25h[?25l2.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagge splat drop /tmp/x saverom [?25h[?25l.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagee splat drop /tmp/x saverom [?25h[?25lbin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25lin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage ssplat drop /tmp/x saverom [?25h[?25ln fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spplat drop /tmp/x saverom [?25h[?25l fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spllat drop /tmp/x saverom [?25h[?25l - futk fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER cleancomment LegacyInterrupt \12,7-14Top[?25h[?25l-- INSERT --12,7-14Topfv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25lpfv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom8-15[?25h[?25llfv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom9-16[?25h[?25l12,8-15Top[?25h[?25l1 change; before #16 1 seconds ago fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom 12,7-14Top[?25h[?25l5 2'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spllat drop /tmp/x saverom./DXECLEANER clean12,7-14Top[?25h[?25l1 change; before #14 4 seconds agon fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spplat drop /tmp/x saverom12,7-14Top[?25h[?25l3in fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage ssplat drop /tmp/x saverom12,7-14Top[?25h[?25l2 5bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25l1.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagee splat drop /tmp/x saverom12,7-14Top[?25h[?25l0 62.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagge splat drop /tmp/x saverom12,7-14Top[?25h[?25l9 7 seconds ago02.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImaage splat drop /tmp/x saverom12,7-14Top[?25h[?25l8102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImmage splat drop /tmp/x saverom12,7-14Top[?25h[?25l77102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzIImage splat drop /tmp/x saverom ./DXECLEANER clean12,7-14Top[?25h[?25l6n7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25l5 8an7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bbzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25l4yan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot//bzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25l3 9tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25lfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splaat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l-- INSERT --12,7-14Top[?25h[?25l9fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spllat drop /tmp/x saverom ./DXECLEANER clean8-15[?25h[?25l8fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spplat drop /tmp/x saverom9-16[?25h[?25l.fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage ssplat drop /tmp/x saverom10-17[?25h[?25lsfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom1-18[?25h[?25lpfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagee splat drop /tmp/x saverom2-19[?25h[?25llfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagge splat drop /tmp/x saverom3-20[?25h[?25lafv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImaage splat drop /tmp/x saverom4-21[?25h[?25ltfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImmage splat drop /tmp/x saverom5-22[?25h[?25l fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzIImage splat drop /tmp/x saverom ./DXECLEANER clean6-23[?25h[?25l12,15-22 Top[?25h[?25l6-23[?25h[?25l7-24[?25h[?25l8-25[?25h[?25l9-26[?25h[?25l - futk 98.splat fv ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER cleancomment LegacyInterrupt \12,19-26 Top[?25h[?25l6-23[?25h[?25lix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25lr r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25lr tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25ltag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25l /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l/tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25l7-24[?25h[?25l8-25[?25h[?25l9-26[?25h[?25l20-27[?25h[?25l1-28[?25h[?25l2-29[?25h[?25l3-30[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l6-33[?25h[?25l7-34[?25h[?25l8-35[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l1-38[?25h[?25l2-39[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l5-42[?25h[?25l2-39[?25h[?25l1-38[?25h[?25l23-30[?25h[?25l1-28[?25h[?25l0-27[?25h[?25l17-24[?25h[?25l6-23[?25h[?25lsaverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l/tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25lfv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l7-24[?25h[?25l9-26[?25h[?25l24-31[?25h[?25l5-32[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l47-54[?25h[?25l53-60[?25h[?25l8-65[?25h[?25lsaverom ./DXECLEANER clean[?25h[?25lclean[?25h[?25l1 change; before #30 1 seconds agosaverom ./DXECLEANER clean12,58-65 Top[?25h[?25l./DXECLEANER clean[?25h[?25l3-60[?25h[?25l47-54[?25h[?25l39-46[?25h[?25l8-45[?25h[?25l4-41[?25h[?25l3-40[?25h[?25l0-37[?25h[?25l29-36[?25h[?25l5-32[?25h[?25l4-31[?25h[?25l19-26[?25h[?25lsplat drop ./DXECLEANER clean[?25h[?25ldrop ./DXECLEANER clean[?25h[?25l./DXECLEANER clean[?25h[?25l1,2 [?25h[?25l0,0-1[?25h[?25l1,2 [?25h[?25l-- INSERT --11,2Top[?25h[?25l9:3[?25h[?25l0:4[?25h[?25l:3[?25h[?25l8:4[?25h[?25l11,3Top[?25h[?25l2,1-8[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 326L, 9545C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d98 -[?2004lfutk 98.splat fv ./DXECLEANER clean -2018/12/20 10:49:31 Found 313 things -2018/12/20 10:49:31 script is ./DXECLEANER -2018/12/20 10:49:40 Try to remove 77EB6C06-FD48-488B-A1B3-AE0A70801369:EFI_FV_FILETYPE_DRIVER:CryptoDXE (77EB6C06-FD48-488B-A1B3-AE0A70801369) -2018/12/20 10:49:40 removed [0xc00bf05280] -+ echo TEST /tmp/futk824997279/1 -TEST /tmp/futk824997279/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/1 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:50:59 Listening on 192.168.0.1:8080 at 2018-12-20 10:50:59.60160588 -0800 PST m=+0.004628087 -2018/12/20 10:53:23 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 10:55:28 Accepted &{{0xc00013e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:55:28 We are now done ...................... -2018/12/20 10:55:28 Removed &{77EB6C06-FD48-488B-A1B3-AE0A70801369 77EB6C06-FD48-488B-A1B3-AE0A70801369:EFI_FV_FILETYPE_DRIVER:CryptoDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk824997279/1 -2018/12/20 10:55:28 Try to remove C9A6DE36-FDFF-4FAF-8343-85D9E3470F43:EFI_FV_FILETYPE_DRIVER:NvmeInt13 (C9A6DE36-FDFF-4FAF-8343-85D9E3470F43) -2018/12/20 10:55:28 removed [0xc000025380] -+ echo TEST /tmp/futk824997279/2 -TEST /tmp/futk824997279/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:56:48 Listening on 192.168.0.1:8080 at 2018-12-20 10:56:48.050349952 -0800 PST m=+0.005221750 -2018/12/20 10:59:11 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:01:17 Accepted &{{0xc00013e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 11:01:17 We are now done ...................... -2018/12/20 11:01:17 Removed &{C9A6DE36-FDFF-4FAF-8343-85D9E3470F43 C9A6DE36-FDFF-4FAF-8343-85D9E3470F43:EFI_FV_FILETYPE_DRIVER:NvmeInt13 7 map[r:cleaner R:saverom]}: file is /tmp/futk824997279/2 -2018/12/20 11:01:17 Try to remove 2DCA4D79-884F-46BD-8561-A290B1237109:EFI_FV_FILETYPE_DRIVER:TyanDxe (2DCA4D79-884F-46BD-8561-A290B1237109) -2018/12/20 11:01:17 removed [0xc00bf04e00] -+ echo TEST /tmp/futk824997279/3 -TEST /tmp/futk824997279/3 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/3 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 11:02:36 Listening on 192.168.0.1:8080 at 2018-12-20 11:02:36.263628608 -0800 PST m=+0.005619205 -2018/12/20 11:04:59 Accepted &{{0xc000178000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:07:05 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 11:07:05 We are now done ...................... -2018/12/20 11:07:05 Removed &{2DCA4D79-884F-46BD-8561-A290B1237109 2DCA4D79-884F-46BD-8561-A290B1237109:EFI_FV_FILETYPE_DRIVER:TyanDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk824997279/3 -2018/12/20 11:07:05 Try to remove 8B7E5420-1B71-442A-9916-C13A4FE02482:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXRP (8B7E5420-1B71-442A-9916-C13A4FE02482) -2018/12/20 11:07:05 removed [0xc000025d80] -+ echo TEST /tmp/futk824997279/4 -TEST /tmp/futk824997279/4 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/4 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 11:08:24 Listening on 192.168.0.1:8080 at 2018-12-20 11:08:24.694037977 -0800 PST m=+0.004816498 -2018/12/20 11:10:48 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:12:54 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 11:12:54 We are now done ...................... -2018/12/20 11:12:54 Removed &{8B7E5420-1B71-442A-9916-C13A4FE02482 8B7E5420-1B71-442A-9916-C13A4FE02482:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk824997279/4 -2018/12/20 11:12:54 Try to remove A062CF1F-8473-4AA3-8793-600BC4FFE9A8:EFI_FV_FILETYPE_DRIVER:CsmDxe (A062CF1F-8473-4AA3-8793-600BC4FFE9A8) -2018/12/20 11:12:54 removed [0xc000025280] -+ echo TEST /tmp/futk824997279/5 -TEST /tmp/futk824997279/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/5 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 11:14:13 Listening on 192.168.0.1:8080 at 2018-12-20 11:14:13.256591089 -0800 PST m=+0.003390009 -2018/12/20 11:16:36 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:19:36 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 11:19:36.606046751 -0800 PST m=+323.352845603 -2018/12/20 11:19:36 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 11:19:36 We are now done ...................... -2018/12/20 11:19:36 accept tcp 192.168.0.1:8080: i/o timeout -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d98ls /tmp/futk* -[?2004l/tmp/futk014708097: -0 1 - -/tmp/futk070264706: -0 1 2 - -/tmp/futk121032350: -0 1 - -/tmp/futk127840641: -0 1 10 11 12 13 14 15 16 17 2 3 4 5 6 7 8 9 - -/tmp/futk162948653: -0 1 - -/tmp/futk189567496: -0 1 - -/tmp/futk198840797: -0 1 2 - -/tmp/futk199366987: -0 1 - -/tmp/futk329102038: -0 1 - -/tmp/futk336682591: -0 1 - -/tmp/futk537381858: -0 1 2 3 - -/tmp/futk574132931: -0 1 - -/tmp/futk641441460: -0 1 - -/tmp/futk708851694: - -/tmp/futk824997279: -0 1 2 3 4 5 - -/tmp/futk896688887: -0 1 - -/tmp/futk988397015: -0 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/futk824997279/4 fv ./DXECLEANER /tmp/futk824997279/4 -[?2004l+ echo TEST /tmp/futk824997279/4 -TEST /tmp/futk824997279/4 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/4 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 11:32:16 Listening on 192.168.0.1:8080 at 2018-12-20 11:32:16.176030264 -0800 PST m=+0.005587516 -2018/12/20 11:34:37 Accepted &{{0xc00016e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:36:43 Accepted &{{0xc00016e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 11:36:43 We are now done ...................... -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER /tmp/futk824997279/4ls /tmp/futk*./DXECLEANER /tmp/futk824997279/45 -[?2004l+ echo TEST /tmp/futk824997279/5 -TEST /tmp/futk824997279/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/5 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:17:02 Listening on 192.168.0.1:8080 at 2018-12-20 12:17:02.889907672 -0800 PST m=+0.004593722 -2018/12/20 12:19:23 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:22:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:22:23.662165333 -0800 PST m=+320.776851295 -2018/12/20 12:22:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:22:23 We are now done ...................... -2018/12/20 12:22:23 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER /tmp/futk824997279/5 -[?2004l+ echo TEST /tmp/futk824997279/5 -TEST /tmp/futk824997279/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/5 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:26:30 Listening on 192.168.0.1:8080 at 2018-12-20 12:26:30.136062592 -0800 PST m=+0.004862191 -2018/12/20 12:28:53 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:31:53 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:31:53.224521133 -0800 PST m=+323.093320584 -2018/12/20 12:31:53 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:31:53 We are now done ...................... -2018/12/20 12:31:53 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat commentsetupcrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LIST removeBMCcrap.bin RUN3 xxx -bin.reset config-4.13.0-rc7 EATIT ipmisucks.bin LOG removemorecrap.bin tyan7102.bin yyy -blacklist DIT fail.bin L Makefile removesetupcrap.bin uinit -commentmorecrap.bin dxeclean.bin futk.remove.99 linux NOTES removesomecrap.bin x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi NOTESvi LIST -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"LIST" 15L, 673C▽ [>c]10;?]11;?remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - remove 8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF \ - remove 53BCC14F-C24F-434C-B294-8ED2D4CC1860 \ - remove 9B680FCE-AD6B-4F3A-B60B-F59899003443 \ - remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 \ - remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 \ - remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B \ - remove C10194E7-DEB2-4AF4-9EEE-BFFDE4D7D4C7 \ - remove A19B1FE7-C1BC-49F8-875F-54A5D542443F \ - remove 62D171CB-78CD-4480-8678-C6A2A797A8DE \ - remove 79CA4208-BBA1-4A9A-8456-E1E66A81484E \ - remove 378D7B65-8DA9-4773-B6E4-A47826A833E1 \ - remove 40BEAB40-CECE-4909-B133-20A413AE19E9 \ - remove 63809859-F029-41C3-9F34-EEEB9EA787A5 \ - -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,3All]2;LIST (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;LIST[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l:[?2004h[?25he[?25l[?25h[?25l [?25hN[?25l[?25hO[?25l[?25hT[?25l[?25hE[?25l[?25hS[?25l[?25h [?25l"NOTES" 4L, 144CGPIO control functions in/usr/libexec/itami-host-power-control-common.sh/bin/reset works but I can't get power button to do anything useful. -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;NOTES (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;NOTES[?25h[?25l2[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l-- INSERT --5,1All]2;NOTES + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;NOTES[?25h[?25l6[?25h[?25li2[?25h[?25lf3[?25h[?25l4[?25h[?25lI5[?25h[?25l6[?25h[?25lr7[?25h[?25le8[?25h[?25lm9[?25h[?25lo10[?25h[?25lv1[?25h[?25le2[?25h[?25l3[?25h[?25lC4[?25h[?25ls5[?25h[?25lm6[?25h[?25lD7[?25h[?25lx8[?25h[?25le9[?25h[?25l,20[?25h[?25l1[?25h[?25lt2[?25h[?25lh3[?25h[?25le4[?25h[?25ln5[?25h[?25l6[?25h[?25lI7[?25h[?25l8[?25h[?25lc9[?25h[?25la30[?25h[?25ln1[?25h[?25l'2[?25h[?25lt3[?25h[?25l4[?25h[?25lr5[?25h[?25le6[?25h[?25l5[?25h[?25l4[?25h[?25lw5[?25h[?25la6[?25h[?25lr7[?25h[?25lm8[?25h[?25l9[?25h[?25lr40[?25h[?25le1[?25h[?25lb2[?25h[?25lo3[?25h[?25lo4[?25h[?25lt5[?25h[?25l6[?25h[?25lf7[?25h[?25lr8[?25h[?25lo9[?25h[?25lm50[?25h[?25l1[?25h[?25lt2[?25h[?25lh3[?25h[?25le4[?25h[?25l5[?25h[?25lk6[?25h[?25le7[?25h[?25lr8[?25h[?25ln9[?25h[?25le60[?25h[?25ll1[?25h[?25l7,1 [?25h[?25l8[?25h[?25lT2[?25h[?25lH3[?25h[?25le4[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25lh3[?25h[?25le4[?25h[?25l5[?25h[?25lp6[?25h[?25lo7[?25h[?25lw8[?25h[?25le9[?25h[?25l10[?25h[?25lc1[?25h[?25ly2[?25h[?25lc3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l9 [?25h[?25lr10[?25h[?25l1[?25h[?25lc2[?25h[?25ly3[?25h[?25lc4[?25h[?25ll5[?25h[?25le6[?25h[?25l7[?25h[?25lb8[?25h[?25li9[?25h[?25lt20[?25h[?25ls1[?25h[?25l2[?25h[?25la3[?25h[?25lr4[?25h[?25le5[?25h[?25l6[?25h[?25la7[?25h[?25l8[?25h[?25lm9[?25h[?25le30[?25h[?25ls1[?25h[?25ls2[?25h[?25l,3[?25h[?25l4[?25h[?25lD5[?25h[?25lX6[?25h[?25lE7[?25h[?25lC8[?25h[?25lL9[?25h[?25lE40[?25h[?25lR1[?25h[?25lN2[?25h[?25lA3[?25h[?25lE4[?25h[?25lR5[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25lA1[?25h[?25lN2[?25h[?25lE3[?25h[?25lR4[?25h[?25l5[?25h[?25ln6[?25h[?25lo7[?25h[?25lw8[?25h[?25l9[?25h[?25lh50[?25h[?25la1[?25h[?25ls2[?25h[?25l3[?25h[?25la4[?25h[?25l5[?25h[?25lr6[?25h[?25le7[?25h[?25ll8[?25h[?25li9[?25h[?25la60[?25h[?25lb1[?25h[?25ll2[?25h[?25le3[?25h[?25l4[?25h[?25lo5[?25h[?25ln6[?25h[?25le7[?25h[?25l.8[?25h[?25l8,67All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"NOTES" 8L, 275C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git add ditgit status . -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: DXECLEANER - modified: Makefile - modified: NOTES - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - L - LIST - LOG - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - uinit - xxx - yyy - -no changes added to commit (use "git add" and/or "git commit -a") -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git commit -as -[?2004lhint: Waiting for your editor to close the file... [?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"/usr/local/src/projects/nobinaryblobs/mainboards/.git/COMMIT_EDITMSG" 27L, 503C▽ [>c]10;?]11;?Signed-off-by: Ronald G. Minnich - -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# -# On branch master -# Your branch is up to date with 'origin/master'. -# -# Changes to be committed: -#modified: DXECLEANER -#modified: Makefile -#modified: NOTES -#modified: RUN3 -# -# Untracked files: -#98.splat -#L -#LIST -#LOG -#futk.remove.99/ -#initramfs.linux_amd64.cpio.lzma -#uinit -#xxx -#yyy -# -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,0-1All]2;COMMIT_EDITMSG (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l3,6 [?25h[?25l5[?25h[?25l2,0-1[?25h[?25l1[?25h[?25l-- INSERT --1,1All[?25h[?25lF2]2;COMMIT_EDITMSG + (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25h[?25li3[?25h[?25ln4[?25h[?25la5[?25h[?25ll6[?25h[?25ly7[?25h[?25l6[?25h[?25ll7[?25h[?25ly8[?25h[?25l9[?25h[?25lg10[?25h[?25le1[?25h[?25lt2[?25h[?25l3[?25h[?25lp4[?25h[?25lo5[?25h[?25lw6[?25h[?25le7[?25h[?25lr8[?25h[?25l9[?25h[?25lr20[?25h[?25li1[?25h[?25lg2[?25h[?25lh3[?25h[?25lt4[?25h[?25l.5[?25h[?25l1,24All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l".git/COMMIT_EDITMSG" 27L, 527C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l [master a5333ed] Finally get power right. - 4 files changed, 2448 insertions(+), 673 deletions(-) -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pusdh -[?2004lbash: pusdh: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd -[?2004lbash: pushd: no other directory -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ~/go/src/github.com/linuxboot/dut/ -.bb/ .git/ uinit/ -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ~/go/src/github.com/linuxboot/dut/ -.bb/ .git/ uinit/ -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ~/go/src/github.com/linuxboot/dut/uinit/u.in..bb/ -[?2004l~/go/src/github.com/linuxboot/dut/uinit /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ ls -[?2004ldut.go dut_test.go rpc.go uinit uinit.go -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ vi dut.go -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"dut.go" 97L, 2155C▽ [>c]10;?]11;?// This is a very simple dut program. It builds into one binary to implement -// both client and server. It's just easier to see both sides of the code and test -// that way. -package main - -import ("flag""fmt""log""net""net/rpc""time" -) - -var (host = flag.String("h", "192.168.0.1", "hostname")me = flag.String("me", "192.168.0.2", "dut hostname")port = flag.String("p", "8080", "port number")dir = flag.String("d", ".", "directory to serve")runDUT = flag.Bool("r", false, "run as the DUT controller")configNet = flag.Bool("C", true, "configure the network") -) - -func dutStart(t, host, port string) (net.Listener, error) {ln, err := net.Listen(t, host+":"+port)if err != nil {log.Print(err)return nil, err}log.Printf("Listening on %v at %v", ln.Addr(), time.Now())return ln, nil -} - -func dutAccept(l net.Listener) (net.Conn, error) {if err := l.(*net.TCPListener).SetDeadline(time.Now().Add(3 * time.Minute)); err != nil {return nil, err}c, err := l.Accept()if err != nil {log.Printf("Listen failed: %v at %v", err, time.Now())log.Print(err)return nil, err}log.Printf("Accepted %v", c)return c, nil -} - -func dutRPC(host, port string) error {l, err := dutStart("tcp", host, port)if err != nil {return err}c, err := dutAccept(l)if err != nil {return err}cl := rpc.NewClient(c)for _, cmd := range []struct {call stringargs interface{}} {{ "Command.Welcome", &RPCWelcome{}},{ "Command.Reboot", &RPCReboot{}},} {var r RPCResif err := cl.Call(cmd.call, cmd.args, &r); err != nil {return err}fmt.Printf("%v(%v): %v\n", cmd.call, cmd.args, string(r.C))}if c, err = dutAccept(l); err != nil {return err}cl = rpc.NewClient(c)var r RPCResif err := cl.Call("Command.Welcome", &RPCWelcome{}, &r); err != nil {return err}fmt.Printf("%v(%v): %v\n","Command.Welcome", nil, string(r.C))1,1Top]2;dut.go (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lreturn nil -} - -func main() {flag.Parse()var err errorif *runDUT {err = dutRPC(*host, *port)} else {err = uinit(*host, *me, *port)}log.Printf("We are now done ......................")if err != nil{log.Fatal(err)} -}97,1Bot[?25h[?25l6,1-8[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5,1 [?25h[?25l4,0-1[?25h[?25l{}3,1 [?25h[?25l{}2,1-8[?25h[?25l1,0-1[?25h[?25l0,1-8[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1,0-1[?25h[?25l0,1-8[?25h[?25l69[?25h[?25l8[?25h[?25l7[?25h[?25l:[?2004h[?25he[?25l[?25h[?25l [?25hD[?25l[?25hX[?25l[?25h...[?25l[?25hU[?25l[?25h[?25l[?25h[?25l67,1-8Bot[?25h[?25l drop]2;dut.go + (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go6-13[?25h[?25l1 change; before #1 0 seconds ago 67,1-8Bot]2;dut.go (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25h[?25l-- INSERT --67,1Botreturn err]2;dut.go + (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25h[?25lh2[?25h[?25ld3[?25h[?25lreturn err68,194%[?25h[?25l68,1-894%[?25h[?25l1 line less; before #2 1 seconds ago - return err}67,1-8Bot]2;dut.go (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25h[?25l:[?2004h[?25hq[?25l[?25h![?25l[?25h [?25l[?2004l]2;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinit]1;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinit[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ pushd -[?2004l/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 ~/go/src/github.com/linuxboot/dut/uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 16L, 345C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -r -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l-- INSERT --17,1All]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25le2[?25h[?25lc3[?25h[?25lh4[?25h[?25lo5[?25h[?25l6[?25h[?25l"7[?25h[?25lA8[?25h[?25lL9[?25h[?25lL10[?25h[?25l1[?25h[?25lD2[?25h[?25lO3[?25h[?25lN4[?25h[?25lE5[?25h[?25l"6[?25h[?25l17,15All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 361C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd -[?2004l~/go/src/github.com/linuxboot/dut/uinit /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ vi dut.go -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"dut.go" 97L, 2155C▽ [>c]10;?]11;?// This is a very simple dut program. It builds into one binary to implement -// both client and server. It's just easier to see both sides of the code and test -// that way. -package main - -import ("flag""fmt""log""net""net/rpc""time" -) - -var (host = flag.String("h", "192.168.0.1", "hostname")me = flag.String("me", "192.168.0.2", "dut hostname")port = flag.String("p", "8080", "port number")dir = flag.String("d", ".", "directory to serve")runDUT = flag.Bool("r", false, "run as the DUT controller")configNet = flag.Bool("C", true, "configure the network") -) - -func dutStart(t, host, port string) (net.Listener, error) {ln, err := net.Listen(t, host+":"+port)if err != nil {log.Print(err)return nil, err}log.Printf("Listening on %v at %v", ln.Addr(), time.Now())return ln, nil -} - -func dutAccept(l net.Listener) (net.Conn, error) {if err := l.(*net.TCPListener).SetDeadline(time.Now().Add(3 * time.Minute)); err != nil {return nil, err}c, err := l.Accept()if err != nil {log.Printf("Listen failed: %v at %v", err, time.Now())log.Print(err)return nil, err}log.Printf("Accepted %v", c)return c, nil -} - -func dutRPC(host, port string) error {l, err := dutStart("tcp", host, port)if err != nil {return err}c, err := dutAccept(l)if err != nil {return err}cl := rpc.NewClient(c)for _, cmd := range []struct {call stringargs interface{}} {{ "Command.Welcome", &RPCWelcome{}},{ "Command.Reboot", &RPCReboot{}},} {var r RPCResif err := cl.Call(cmd.call, cmd.args, &r); err != nil {return err}fmt.Printf("%v(%v): %v\n", cmd.call, cmd.args, string(r.C))}if c, err = dutAccept(l); err != nil {return err}cl = rpc.NewClient(c)var r RPCResif err := cl.Call("Command.Welcome", &RPCWelcome{}, &r); err != nil {return err}fmt.Printf("%v(%v): %v\n","Command.Welcome", nil, string(r.C))1,1Top]2;dut.go (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lreturn nil -} - -func main() {flag.Parse()var err errorif *runDUT {err = dutRPC(*host, *port)} else {err = uinit(*host, *me, *port)}log.Printf("We are now done ......................")if err != nil{log.Fatal(err)} -}97,1Bot[?25h[?25l6,1-8[?25h[?25l5[?25h[?25l4[?25h[?25l-- INSERT --95,194% log.Fatal(err) - }]2;dut.go + (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25h[?25l2-9[?25h[?25l3-17[?25h[?25ll4-18[?25h[?25ls5-19[?25h[?25l.6-20[?25h[?25lE7-21[?25h[?25lx8-22[?25h[?25l7-21[?25h[?25l6-20[?25h[?25l5-19[?25h[?25l4-18[?25h[?25l3-17[?25h[?25ll4-18[?25h[?25lo5-19[?25h[?25lg6-20[?25h[?25l.7-21[?25h[?25lP8-22[?25h[?25lrt10-24[?25h[?25li1-25[?25h[?25ln2-26[?25h[?25lt3-27[?25h[?25lf4-28[?25h[?25l3-27[?25h[?25l2-26[?25h[?25l1-25[?25h[?25l0-24[?25h[?25l9-23 [?25h[?25li10-24[?25h[?25ln1-25[?25h[?25lt2-26[?25h[?25l(3-27[?25h[?25l"4-28[?25h[?25l%5-29[?25h[?25lv6-30[?25h[?25l5-29[?25h[?25l4-28[?25h[?25l3-27[?25h[?25l2-26[?25h[?25lf3-27[?25h[?25l(4-28[?25h[?25l"5-29[?25h[?25l%6-30[?25h[?25lv7-31[?25h[?25l"8-32[?25h[?25l,9-33[?25h[?25l20-34[?25h[?25le1-35[?25h[?25lr2-36[?25h[?25lr3-37[?25h[?25l()4-38[?25h[?25l() log.Fatal(err)6,1 88[?25h[?25l2-9[?25h[?25l3-17[?25h[?25l4-25[?25h[?25l3-17[?25h[?25lo4-18[?25h[?25ls5-19[?25h[?25l.6-20[?25h[?25lE7-21[?25h[?25lx8-22[?25h[?25li9-23[?25h[?25lt10-24[?25h[?25l(1-25[?25h[?25l22-26[?25h[?25l(2)3-27[?25h[?25l96,12-26 88%[?25h[?25l(2)(err)7[?25h[?25l{}2-9 94[?25h[?25l{}6,2-16[?25h[?25l5[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"dut.go" 98L, 2175C written ]2;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinit]1;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinit -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ go build -[?2004l# github.com/linuxboot/dut/uinit -./dut.go:96:3: undefined: os -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ goimports 8-w *.go -[?2004lgo build -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ go build -[?2004l[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ pushd -[?2004l/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 ~/go/src/github.com/linuxboot/dut/uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -2018/12/20 12:35:59 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2018/12/20 12:35:59 Filename is /tmp/initramfs.linux_amd64.cpio -2018/12/20 12:36:07 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 2853746 Dec 20 12:36 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek bmake b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5141 kB -CRC bcf362bf -Kernel: arch/x86/boot/bzImage is ready (#74) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5279792 Dec 20 12:37 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [15@D': vi DXECLEANER[1@X./DXECLEANER /tmp/futk824997279/5  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER /tmp/futk824997279/5 (reverse-i-search)`': c': futk futk.remove.99/98 fv linux/arch/x86/boot/bzImage splat 98.splat saverom p': cp /tmp/me.bin 3rdparty/blobs/baseboard-dragonegg/ [1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/me.bin 3rdparty/blobs/baseboard-dragonegg/ (reverse-i-search)`': f': make menuconfigu': ls /tmp/futk120101721/[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk120101721/history -[?2004l 1064 [2018-10-19 09:25:46 -0700] ls - 1065 [2018-10-19 09:25:49 -0700] tmux - 1066 [2018-11-01 14:35:04 -0700] cd /usr/local/src/projects/NERF/ - 1067 [2018-11-01 14:35:04 -0700] ls - 1068 [2018-11-01 14:35:20 -0700] find .. -name EATIT -print - 1069 [2018-11-01 14:35:25 -0700] ls prod - 1070 [2018-11-01 14:35:36 -0700] ls - 1071 [2018-11-01 14:35:43 -0700] cd ../nobinaryblobs/linux-4HEAD/ - 1072 [2018-11-01 14:35:43 -0700] ls - 1073 [2018-11-01 14:35:57 -0700] ~/go/bin/utk tyan7102.bin count - 1074 [2018-11-01 14:36:15 -0700] ~/go/bin/utk removesetupcrap.bin count|grep DRIVER - 1075 [2018-11-01 14:48:28 -0700] vi EATIT - 1076 [2018-11-01 14:50:12 -0700] ./EATIT - 1077 [2018-11-15 14:15:54 -0800] make cleanme - 1078 [2018-11-06 13:20:15 -0800] sudo minicom - 1079 [2018-11-06 13:21:02 -0800] dmesg - 1080 [2018-11-06 13:22:09 -0800] sudo minicom - 1081 [2018-11-09 16:24:23 -0800] echo reset > /dev/ttyUSB0 - 1082 [2018-11-09 16:24:33 -0800] cat /dev/ttyUSB0 - 1083 [2018-11-09 16:24:36 -0800] bg - 1084 [2018-11-09 16:24:41 -0800] echo reset > /dev/ttyUSB0 - 1085 [2018-11-09 16:24:47 -0800] fg - 1086 [2018-11-09 16:24:51 -0800] which reset - 1087 [2018-11-09 16:25:00 -0800] ls /etc/minicom usb1 - 1088 [2018-11-09 16:25:05 -0800] sudo minicom usb1 - 1089 [2018-11-09 16:25:19 -0800] cat /dev/ttyUSB0 - 1090 [2018-11-09 16:25:21 -0800] bg - 1091 [2018-11-09 16:25:28 -0800] echo /bin/reset > /dev/ttyUSB0 - 1092 [2018-11-09 16:25:43 -0800] fg - 1093 [2018-11-09 16:25:50 -0800] ls /etc/minicom - 1094 [2018-11-09 16:25:56 -0800] sudo minicom - 1095 [2018-11-09 16:28:33 -0800] cat /dev/ttyUSB0 - 1096 [2018-11-09 16:28:35 -0800] bg - 1097 [2018-11-09 16:35:17 -0800] echo cat /bin/reset > /dev/ttyUSB0 - 1098 [2018-11-09 16:50:29 -0800] cd go/src/github.com/linuxboot/dut/ - 1099 [2018-11-09 16:50:30 -0800] ls - 1100 [2018-11-09 16:50:39 -0800] vi uinit/uinit.go - 1101 [2018-11-09 16:50:44 -0800] vi dut - 1102 [2018-11-09 16:56:23 -0800] vi dut.go - 1103 [2018-11-09 16:56:59 -0800] git diff - 1104 [2018-11-09 16:57:18 -0800] git commit -as - 1105 [2018-11-09 16:57:29 -0800] git push - 1106 [2018-11-15 10:50:34 -0800] git log - 1107 [2018-11-15 10:50:45 -0800] git branch - 1108 [2018-11-15 10:50:55 -0800] git checkout -b characterio - 1109 [2018-11-15 12:46:02 -0800] jobs - 1110 [2018-11-15 12:46:22 -0800] echo cat /bin/reset >/dev/ttyUSB0 - 1111 [2018-11-15 12:46:28 -0800] fg - 1112 [2018-11-15 12:46:31 -0800] sudo minicom - 1113 [2018-11-15 12:47:04 -0800] cat /dev/ttyUSB0 - 1114 [2018-11-15 12:47:06 -0800] bg - 1115 [2018-11-16 10:00:59 -0800] echo /bin/reset >/dev/ttyUSB0 - 1116 [2018-11-16 10:01:01 -0800] fg - 1117 [2018-11-16 10:01:04 -0800] sudo minicom - 1118 [2018-11-16 10:01:23 -0800] cat /dev/ttyUSB0 - 1119 [2018-11-16 10:01:25 -0800] bg - 1120 [2018-11-16 10:16:41 -0800] make cleanme - 1121 [2018-11-09 13:46:47 -0800] cd - 1122 [2018-11-09 13:46:53 -0800] cd go/src/github.com/linuxboot/fiano/ - 1123 [2018-11-09 13:46:54 -0800] git pull - 1124 [2018-11-09 13:47:34 -0800] wget https://patch-diff.githubusercontent.com/raw/linuxboot/fiano/pull/227.patch - 1125 [2018-11-09 13:47:36 -0800] git diff - 1126 [2018-11-09 13:47:38 -0800] git show - 1127 [2018-11-09 13:47:46 -0800] history - 1128 [2018-11-09 13:47:50 -0800] more 227.patch - 1129 [2018-11-09 13:47:55 -0800] git patch 227.patch - 1130 [2018-11-09 13:48:02 -0800] git apply 227.patch - 1131 [2018-11-09 13:48:04 -0800] git show - 1132 [2018-11-09 13:48:08 -0800] git status - 1133 [2018-11-09 13:48:10 -0800] git diff - 1134 [2018-11-09 13:48:19 -0800] cd cmds/utk/ - 1135 [2018-11-09 13:48:21 -0800] go install - 1136 [2018-11-15 11:16:33 -0800] cd .././../../dut/ - 1137 [2018-11-15 11:16:34 -0800] ls - 1138 [2018-11-15 11:16:38 -0800] vi dut.go - 1139 [2018-11-15 11:17:15 -0800] git branch - 1140 [2018-11-15 11:17:18 -0800] git checkout master - 1141 [2018-11-15 11:17:19 -0800] git pull - 1142 [2018-11-15 11:17:23 -0800] ls - 1143 [2018-11-15 11:17:25 -0800] ls uinit - 1144 [2018-11-15 11:18:04 -0800] go build dut - 1145 [2018-11-15 11:18:09 -0800] go build - 1146 [2018-11-15 11:18:10 -0800] ls - 1147 [2018-11-15 11:18:14 -0800] ./dut - 1148 [2018-11-15 11:18:41 -0800] vi dut.go - 1149 [2018-11-15 11:45:35 -0800] cd uinit/ - 1150 [2018-11-15 11:45:41 -0800] git mv ../*.go . - 1151 [2018-11-15 11:45:42 -0800] ls - 1152 [2018-11-15 11:45:50 -0800] go build - 1153 [2018-11-15 11:45:51 -0800] ls - 1154 [2018-11-15 11:45:56 -0800] ls .. - 1155 [2018-11-15 11:46:01 -0800] go build - 1156 [2018-11-15 11:46:45 -0800] vi dut.go - 1157 [2018-11-15 11:47:02 -0800] go build - 1158 [2018-11-15 12:41:20 -0800] vi uinit.go - 1159 [2018-11-15 12:41:36 -0800] ./uinit - 1160 [2018-11-15 12:41:40 -0800] fg - 1161 [2018-11-15 12:42:50 -0800] go build - 1162 [2018-11-15 12:42:53 -0800] vi uinit.go - 1163 [2018-11-15 12:42:57 -0800] go build - 1164 [2018-11-15 12:42:59 -0800] ./uinit - 1165 [2018-11-15 12:48:47 -0800] vi uinit.go - 1166 [2018-11-15 12:49:08 -0800] vi dut.go - 1167 [2018-11-15 12:49:26 -0800] go build - 1168 [2018-11-15 12:49:28 -0800] vi dut.go - 1169 [2018-11-15 12:49:38 -0800] go build - 1170 [2018-11-15 12:59:04 -0800] vi dut.go - 1171 [2018-11-15 12:59:11 -0800] go build - 1172 [2018-11-15 12:59:14 -0800] ./uinit - 1173 [2018-11-15 13:09:21 -0800] vi dut.go - 1174 [2018-11-15 13:29:16 -0800] go build - 1175 [2018-11-15 14:02:57 -0800] cd ../../fiano/cmds/utk/ - 1176 [2018-11-15 14:02:58 -0800] ls - 1177 [2018-11-15 14:02:59 -0800] vi utk.go - 1178 [2018-11-15 14:03:05 -0800] ./ut - 1179 [2018-11-15 14:03:15 -0800] ~/go/bin/utk -h - 1180 [2018-11-15 14:03:21 -0800] git grep -i blacklist - 1181 [2018-11-15 14:03:33 -0800] git log - 1182 [2018-11-15 14:03:47 -0800] git show 241969791e4210d0592758149ecfcfdd48f248c0 - 1183 [2018-11-15 14:14:01 -0800] vi 241969791e4210d0592758149ecfcfdd48f248c0 - 1184 [2018-11-15 14:14:04 -0800] vi utk.go - 1185 [2018-11-15 14:14:19 -0800] vi ../../pkg/visitors/dxecleaner.go - 1186 [2018-11-16 10:07:40 -0800] git grep Failed - 1187 [2018-11-16 10:07:43 -0800] git grep Failed .. - 1188 [2018-11-16 10:07:46 -0800] git grep Failed ../.. - 1189 [2018-11-16 10:08:04 -0800] vi ../../pkg/visitors/dxecleaner.go - 1190 [2018-11-16 10:11:12 -0800] cd ../../pkg/visitors/ - 1191 [2018-11-16 10:11:14 -0800] go test -v - 1192 [2018-11-16 10:11:40 -0800] cd ../../cmds/utk/ - 1193 [2018-11-16 10:11:41 -0800] go install - 1194 [2018-11-16 10:11:51 -0800] git diff - 1195 [2018-11-16 10:12:00 -0800] git checkout -b moreinfo origin/master - 1196 [2018-11-16 10:12:04 -0800] git commit -as - 1197 [2018-11-16 10:12:49 -0800] git push rminnich - 1198 [2018-11-16 10:12:52 -0800] hub fork - 1199 [2018-11-16 10:12:59 -0800] vi .git/config - 1200 [2018-11-16 10:13:05 -0800] vi ./../../.git/config - 1201 [2018-11-16 10:13:21 -0800] hub fork - 1202 [2018-11-16 10:13:50 -0800] git remote show - 1203 [2018-11-16 10:13:59 -0800] git remote add rminnich git@github.com:rminnich/fiano - 1204 [2018-11-16 10:14:03 -0800] git push rminnich - 1205 [2018-11-16 10:14:15 -0800] hub pull-request - 1206 [2018-11-16 10:14:31 -0800] git remote show -v - 1207 [2018-11-16 10:14:37 -0800] git remote show - 1208 [2018-11-16 10:14:43 -0800] git remote -v show - 1209 [2018-11-16 10:14:45 -0800] git remote -v - 1210 [2018-11-16 10:15:03 -0800] hub pull-request - 1211 [2018-11-16 10:16:02 -0800] git fetch origin - 1212 [2018-11-16 10:36:10 -0800] pushd ../../pkg/ - 1213 [2018-11-16 10:36:10 -0800] ls - 1214 [2018-11-16 10:36:13 -0800] cd visitors/ - 1215 [2018-11-16 10:36:13 -0800] ls - 1216 [2018-11-16 10:36:17 -0800] vi dxecleaner.go - 1217 [2018-11-16 10:37:02 -0800] git grep -i type.*dxe .. - 1218 [2018-11-16 10:37:20 -0800] cd - 1219 [2018-11-16 10:37:32 -0800] cd go/src/github.com/linuxboot/dut/ - 1220 [2018-11-16 10:37:32 -0800] ls - 1221 [2018-11-16 10:37:47 -0800] cd /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/ - 1222 [2018-11-16 10:37:48 -0800] ls - 1223 [2018-11-16 10:37:57 -0800] jq < xxx - 1224 [2018-11-16 10:38:00 -0800] jq < xxx|less - 1225 [2018-11-16 10:38:10 -0800] jq < xxx - 1226 [2018-11-16 10:38:16 -0800] strace jq < xxx - 1227 [2018-11-16 10:38:25 -0800] jq < xxx > yyy - 1228 [2018-11-16 10:38:37 -0800] jq < xxx - 1229 [2018-11-16 10:38:41 -0800] jq < xxx > yyy - 1230 [2018-11-16 10:38:43 -0800] cat yyy - 1231 [2018-11-16 10:39:00 -0800] jq '.[]' < xxx - 1232 [2018-11-16 10:39:03 -0800] jq '.[]' < xxx |less - 1233 [2018-11-16 10:41:28 -0800] jq '.[]|arrays' < xxx |less - 1234 [2018-11-16 10:41:31 -0800] jq '.[]|arrays' < xxx - 1235 [2018-11-16 10:42:00 -0800] jq '.[]|.["sections"]' < xxx |less - 1236 [2018-11-16 10:42:12 -0800] jq '.[]|.[sections]' < xxx |less - 1237 [2018-11-16 10:42:41 -0800] jq '.[]|["Sections]' < xxx |less - 1238 [2018-11-16 10:42:47 -0800] jq '.[]|["Sections"]' < xxx |less - 1239 [2018-11-16 10:42:56 -0800] jq '.[]|.Sections[]' < xxx |less - 1240 [2018-11-16 10:43:50 -0800] jq '.[]|.Sections[].Encapsulated[]' < xxx |less - 1241 [2018-11-16 10:43:59 -0800] jq '.[]|.Sections[]|.Encapsulated[]' < xxx |less - 1242 [2018-11-16 10:44:09 -0800] jq '.[]|.Sections[]' < xxx |less - 1243 [2018-11-16 10:44:22 -0800] jq '.[]' < xxx - 1244 [2018-11-16 10:45:13 -0800] more xxx - 1245 [2018-11-16 10:46:15 -0800] jq '.[]|.Sections[2]' < xxx |less - 1246 [2018-11-16 10:46:26 -0800] jq '.[]|.Sections[0]' < xxx |less - 1247 [2018-11-16 10:47:20 -0800] jq '.[]|.Sections[.Type==2]' < xxx |less - 1248 [2018-11-16 10:47:48 -0800] jq '.[]|.Sections|.select(.Type==2)' < xxx |less - 1249 [2018-11-16 10:47:52 -0800] jq '.[]|.Sections|.select(.Type==2)' < xxx - 1250 [2018-11-16 10:48:06 -0800] jq '.[]|.Sections.select(.Type==2)' < xxx - 1251 [2018-11-16 10:49:39 -0800] jq '.[]|.Sections|select(.Type=="2")' < xxx - 1252 [2018-11-16 10:50:05 -0800] jq '.[]|.Sections[p)' < xxx - 1253 [2018-11-16 10:51:10 -0800] jq '.[]|.Sections[]|select(.Type=="2")' < xxx - 1254 [2018-11-16 10:51:20 -0800] jq '.[]|.Sections[]' < xxx - 1255 [2018-11-16 10:51:37 -0800] jq '.[]|.Sections[].Encapsulated[]' < xxx - 1256 [2018-11-16 10:51:46 -0800] jq '.[]|.Sections[]|.Encapsulated[]' < xxx - 1257 [2018-11-16 10:52:46 -0800] greo ccess LOG - 1258 [2018-11-16 10:52:50 -0800] grep ccess LOG - 1259 [2018-11-16 10:52:53 -0800] grep FAIL log - 1260 [2018-11-16 10:52:57 -0800] grep -i fail LOG - 1261 [2018-11-16 10:53:24 -0800] ~/go/bin/go utk dxeclean.bin find 16D0A23E-C09C-407D-A14A-AD058FDD0CA1 - 1262 [2018-11-16 10:53:28 -0800] ~/go/bin/utk dxeclean.bin find 16D0A23E-C09C-407D-A14A-AD058FDD0CA1 - 1263 [2018-11-16 10:53:42 -0800] cat blacklist - 1264 [2018-11-16 13:16:59 -0800] grep -i fail LOG - 1265 [2018-11-16 13:17:08 -0800] grep -i ucc LOG - 1266 [2018-11-16 13:19:47 -0800] jq -c to_entries < xxx - 1267 [2018-11-16 13:21:15 -0800] jq -c 'to_entries | select ( .Type == "EFI_FV_FILETYPE_DRIVER")' - 1268 [2018-11-16 13:21:19 -0800] jq -c 'to_entries | select ( .Type == "EFI_FV_FILETYPE_DRIVER")' /tmp/list - 1672 [2018-12-03 11:28:31 -0800] vi /tmp/list - 1673 [2018-12-03 11:33:45 -0800] vp futk.remove.99/99 remove99.bin - 1674 [2018-12-03 11:33:47 -0800] vi Makefile - 1675 [2018-12-03 11:34:29 -0800] fg - 1676 [2018-12-03 11:35:23 -0800] tmux - 1677 [2018-12-04 11:52:50 -0800] eval 'set +o history' 2>/dev/null || setopt HIST_IGNORE_SPACE 2>/dev/null - 1678 [2018-12-04 11:53:30 -0800] git ls-remote https://chrome-internal.googlesource.com/a/chromeos/manifest-internal.git - 1679 [2018-12-04 11:53:44 -0800] cd chromiumos/ - 1680 [2018-12-04 11:53:47 -0800] repo init -u https://chrome-internal.googlesource.com/chromeos/manifest-internal.git --repo-url='https://chromium.googlesource.com/external/repo.git' - 1681 [2018-12-04 11:55:27 -0800] repo init -u https://chromium.googlesource.com/chromiumos/manifest.git --repo-url https://chromium.googlesource.com/external/repo.git - 1682 [2018-12-04 11:55:45 -0800] which repo - 1683 [2018-12-04 11:55:57 -0800] ls -l ~/bin/repo - 1684 [2018-12-04 11:56:01 -0800] rm ~/bin/repo - 1685 [2018-12-04 11:56:18 -0800] sudo apt-get install git-core gitk git-gui curl lvm2 thin-provisioning-tools python-pkg-resources python-virtualenv python-oauth2client - 1686 [2018-12-04 11:56:44 -0800] which repo - 1687 [2018-12-04 11:57:29 -0800] cd .. - 1688 [2018-12-04 11:58:37 -0800] git clone https://chromium.googlesource.com/chromium/tools/depot_tools - 1689 [2018-12-04 11:58:40 -0800] vi ~/.git/config - 1690 [2018-12-04 11:59:17 -0800] git --debug - 1691 [2018-12-04 11:59:39 -0800] strace -s 1024 -f git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git - 1692 [2018-12-04 12:00:01 -0800] strace -s 1024 -f git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1693 [2018-12-04 12:00:10 -0800] strace -o shit -s 1024 -f git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git - 1694 [2018-12-04 12:00:13 -0800] vi shit - 1695 [2018-12-04 12:00:47 -0800] strace -o shit -s 1024 -f git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1696 [2018-12-04 12:00:49 -0800] vi shit - 1697 [2018-12-04 12:01:46 -0800] strace -ttt -s 1024 -f git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1698 [2018-12-04 12:02:02 -0800] wget http://chromium.googlesource.com/chromium/tools/depot_tools.git/ - 1699 [2018-12-04 12:02:14 -0800] strace -ttt -s 1024 -f git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1700 [2018-12-04 12:02:18 -0800] git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1701 [2018-12-04 12:02:27 -0800] git clone http://chromium.googlesource.com/chromium/tools/depot_tools - 1702 [2018-12-04 12:02:32 -0800] vi ~/.gitconfig - 1703 [2018-12-04 12:03:45 -0800] vi ~/.gitcookies - 1704 [2018-12-04 12:04:04 -0800] rm ~/.gitcookies - 1705 [2018-12-03 11:35:30 -0800] ls - 1706 [2018-12-03 11:35:31 -0800] cat ma - 1707 [2018-12-03 11:35:34 -0800] cat Makefile - 1708 [2018-12-03 11:35:38 -0800] make removefrom99 - 1709 [2018-12-03 11:35:49 -0800] echo *99* - 1710 [2018-12-03 11:35:57 -0800] ls - 1711 [2018-12-03 11:36:05 -0800] ls -l - 1712 [2018-12-03 11:36:25 -0800] cp futk.remove.99/99 remove99.bin - 1713 [2018-12-03 11:36:29 -0800] make removefrom99 - 1714 [2018-12-04 12:29:14 -0800] fg - 1715 [2018-12-04 12:29:16 -0800] history - 1716 [2018-12-10 13:06:19 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1717 [2018-12-10 13:06:19 -0800] ls - 1718 [2018-12-10 13:16:04 -0800] cd /usr/local/src/chromiumos/ - 1719 [2018-12-10 13:16:04 -0800] ls - 1720 [2018-12-10 13:16:06 -0800] ls .. - 1721 [2018-12-10 13:16:11 -0800] grep repo ./* - 1722 [2018-12-10 13:16:17 -0800] grep repo * - 1723 [2018-12-10 13:16:20 -0800] grep repo ../* - 1724 [2018-12-10 13:16:29 -0800] ls .. - 1725 [2018-12-10 13:16:50 -0800] ls - 1726 [2018-12-10 13:17:14 -0800] history | grep script - 1727 [2018-12-10 13:20:01 -0800] ls /usr/local/sc - 1728 [2018-12-10 13:20:05 -0800] ls /usr/local/src - 1729 [2018-12-10 13:20:26 -0800] history - 1730 [2018-12-10 13:21:00 -0800] ls - 1731 [2018-12-10 13:21:02 -0800] ls .. - 1732 [2018-12-10 13:21:05 -0800] ls ~ - 1733 [2018-12-10 13:21:18 -0800] more ~/L1NUXB00T - 1734 [2018-12-10 13:21:28 -0800] ls /usr/local/src/projects/ - 1735 [2018-12-10 13:21:31 -0800] ls /usr/local/src/projects/nobinaryblobs/ - 1736 [2018-12-10 13:21:41 -0800] ls /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1737 [2018-12-10 13:25:09 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1738 [2018-12-10 13:25:10 -0800] ls - 1739 [2018-12-10 13:25:19 -0800] cbfstool coreboot.rom print - 1740 [2018-12-10 13:28:40 -0800] cd /usr/local/src/chromiumos/ - 1741 [2018-12-10 13:28:42 -0800] du -s * - 1742 [2018-12-10 13:28:45 -0800] cd .. - 1743 [2018-12-10 13:28:51 -0800] sudo du -s chromiumos/ - 1744 [2018-12-10 14:02:14 -0800] cd projects/nobinaryblobs/dragonsegg/ - 1745 [2018-12-10 14:02:15 -0800] ls - 1746 [2018-12-10 14:02:20 -0800] cbfstool coreboot.rom print - 1747 [2018-12-11 10:23:29 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1748 [2018-12-11 10:23:30 -0800] ls - 1749 [2018-12-11 10:23:38 -0800] git clone git@github.com:torvalds/linux - 1750 [2018-12-11 10:27:56 -0800] cd linux/ - 1751 [2018-12-11 10:28:12 -0800] cp ~/go/src/github.com/u-root/u-root/integration/testdata/CONFIG . - 1752 [2018-12-11 10:28:17 -0800] cp CONFIG .config - 1753 [2018-12-11 10:28:21 -0800] make menuconfig - 1754 [2018-12-11 10:29:17 -0800] grep 64 .config - 1755 [2018-12-11 10:29:27 -0800] make - 1756 [2018-12-11 10:32:42 -0800] make -j32 - 1757 [2018-12-11 10:33:20 -0800] ls -l arch/x86/boot/bzImage - 1758 [2018-12-11 10:33:34 -0800] grep INITR .config - 1759 [2018-12-11 10:33:39 -0800] grep NET .config - 1760 [2018-12-11 10:33:44 -0800] cat CONFIG - 1761 [2018-12-11 10:34:09 -0800] rm .config - 1762 [2018-12-11 10:34:11 -0800] make mrproper - 1763 [2018-12-11 10:34:23 -0800] cat > .config - 1764 [2018-12-11 10:34:33 -0800] make -j64 - 1765 [2018-12-11 10:34:45 -0800] make mrproper - 1766 [2018-12-11 10:34:53 -0800] cat > .config - 1767 [2018-12-11 10:34:57 -0800] make menuconfig - 1768 [2018-12-11 10:35:07 -0800] make -j40 - 1769 [2018-12-11 10:35:51 -0800] ls -l arch/x86/boot/bzImage - 1770 [2018-12-11 10:36:12 -0800] make mrproper - 1771 [2018-12-11 10:36:22 -0800] more CONFIG - 1772 [2018-12-11 10:36:46 -0800] make -j40 - 1773 [2018-12-11 10:47:14 -0800] ls -l arch/x86/boot/bzImage - 1774 [2018-12-11 10:47:48 -0800] cat >> .config - 1775 [2018-12-11 10:47:52 -0800] make -j40 - 1776 [2018-12-11 10:48:23 -0800] make mrproper - 1777 [2018-12-11 10:51:21 -0800] make -j40 - 1778 [2018-12-11 10:51:45 -0800] make tinyconfig - 1779 [2018-12-11 10:51:52 -0800] make -j40 - 1780 [2018-12-11 10:58:31 -0800] ls -l arch/x86/boot/bzImage - 1781 [2018-12-11 10:58:35 -0800] cat >> .config - 1782 [2018-12-11 10:58:39 -0800] make menuconfig - 1783 [2018-12-11 10:58:48 -0800] make -j40 - 1784 [2018-12-11 11:03:21 -0800] ls -l arch/x86/boot/bzImage - 1785 [2018-12-11 11:04:15 -0800] cd ../coreboot/ - 1786 [2018-12-11 11:04:16 -0800] ls - 1787 [2018-12-11 11:05:10 -0800] cd .. - 1788 [2018-12-11 11:05:11 -0800] ls - 1789 [2018-12-11 11:05:38 -0800] cbfstool coreboot.rom print - 1790 [2018-12-11 11:05:40 -0800] cbfstool coreboot.rom - 1791 [2018-12-11 11:05:54 -0800] cbfstool coreboot.rom print - 1792 [2018-12-11 11:06:52 -0800] cbfstool coreboot.rom extract -n fallback/payload -f initramfs - 1793 [2018-12-11 11:07:19 -0800] cbfstool -m 386 coreboot.rom extract -n fallback/payload -f initramfs - 1794 [2018-12-11 11:15:25 -0800] cbfstool coreboot.rom extract -m x86 -n fallback/payload -f initramfs - 1795 [2018-12-11 11:15:29 -0800] file initramfs - 1796 [2018-12-11 11:16:34 -0800] (cd ~/go/src/github.com/u-root/u-root/cmds/bzimage/ && go install) - 1797 [2018-12-11 11:16:45 -0800] ls ~/go/bin - 1798 [2018-12-11 11:16:51 -0800] PATH=$PATH:~/go/bin - 1799 [2018-12-11 11:16:55 -0800] bzimage - 1800 [2018-12-11 11:17:29 -0800] bzimage extract initramfs i - 1801 [2018-12-11 11:17:39 -0800] hexdump -C initramfs |less - 1802 [2018-12-11 11:17:52 -0800] nm -n initramfs - 1803 [2018-12-11 11:17:56 -0800] file initramfs - 1804 [2018-12-11 11:18:04 -0800] readelf -l initramfs |less - 1805 [2018-12-11 11:23:19 -0800] pushd ~/go/src/github.com/u-root/u-root/ - 1806 [2018-12-11 11:23:24 -0800] go build ./u-root - 1807 [2018-12-11 11:23:26 -0800] go build ./u-root.go - 1808 [2018-12-11 11:24:25 -0800] ./u-root -build=bb minimal - 1809 [2018-12-11 11:24:43 -0800] popd - 1810 [2018-12-11 11:24:53 -0800] cp /tmp/initramfs.linux_amd64.cpio minimal.cpio - 1811 [2018-12-11 11:25:01 -0800] make menuconfig - 1812 [2018-12-11 11:25:06 -0800] cd linux/ - 1813 [2018-12-11 11:25:09 -0800] make menuconfig - 1814 [2018-12-11 11:25:50 -0800] cp ../minimal.cpio . - 1815 [2018-12-11 11:25:52 -0800] xz minimal.cpio - 1816 [2018-12-11 11:25:56 -0800] ls -l mini* - 1817 [2018-12-11 11:27:03 -0800] make -j40 - 1818 [2018-12-11 11:27:33 -0800] ls -l arch/x86/boot/bzImage - 1819 [2018-12-11 11:28:48 -0800] cd .. - 1820 [2018-12-11 11:28:56 -0800] cp coreboot.rom coreboot_minimal.rom - 1821 [2018-12-11 11:29:11 -0800] vi Makefile - 1822 [2018-12-11 11:29:33 -0800] rm coreboot_minimal.rom - 1823 [2018-12-11 11:29:34 -0800] fg - 1824 [2018-12-11 11:30:14 -0800] make minimal - 1825 [2018-12-11 11:30:38 -0800] fg - 1826 [2018-12-11 11:30:40 -0800] vi Makefile - 1827 [2018-12-11 11:30:49 -0800] make minimal - 1828 [2018-12-11 11:30:58 -0800] vi Makefile - 1829 [2018-12-11 11:31:03 -0800] make minimal - 1830 [2018-12-11 11:31:26 -0800] fg - 1831 [2018-12-11 11:31:28 -0800] vi Makefile - 1832 [2018-12-11 11:31:49 -0800] make - 1833 [2018-12-11 11:31:54 -0800] make minimal - 1834 [2018-12-11 11:32:09 -0800] cbfstool - 1835 [2018-12-11 11:32:47 -0800] fg - 1836 [2018-12-11 11:32:50 -0800] fgh - 1837 [2018-12-11 11:32:52 -0800] vi Makefile - 1838 [2018-12-11 11:34:10 -0800] vi ../coreboot/util/cbfstool/cbfs-payload-linux.c - 1839 [2018-12-11 11:35:14 -0800] strace -f -o shit make minimal - 1840 [2018-12-11 11:35:17 -0800] vi shit - 1841 [2018-12-11 11:36:02 -0800] cbfstool - 1842 [2018-12-11 11:36:54 -0800] cbfstool minimal.rom add-payload linux/vmlinux - 1843 [2018-12-11 11:37:08 -0800] cbfstool minimal.rom add-payload -n fallback/payload -f linux/vmlinux - 1844 [2018-12-11 11:37:19 -0800] make minimal - 1845 [2018-12-11 11:37:27 -0800] cbfstool minimal.rom print - 1846 [2018-12-11 11:38:16 -0800] cbfstool coreboot.rom print - 1847 [2018-12-11 11:39:49 -0800] pusdh - 1848 [2018-12-11 11:39:51 -0800] pushd - 1849 [2018-12-11 11:39:55 -0800] pushd ~/go/src/github.com/u-root/u-root/ - 1850 [2018-12-11 11:40:30 -0800] ./u-root -build=bb github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/init github.com/u-root/u-root/cmds/{ls,cat,date} - 1851 [2018-12-11 11:41:01 -0800] cpio -ivt < /tmp/initramfs.linux_amd64.cpio - 1852 [2018-12-11 11:41:06 -0800] pushd - 1853 [2018-12-11 11:41:18 -0800] cp /tmp/initramfs.linux_amd64.cpio 5commands.cpio - 1854 [2018-12-11 11:41:21 -0800] vi Makefile - 1855 [2018-12-11 11:41:53 -0800] cbfstool - 1856 [2018-12-11 11:42:01 -0800] fg - 1857 [2018-12-11 11:44:23 -0800] ls - 1858 [2018-12-11 11:44:29 -0800] make 5commands - 1859 [2018-12-11 11:44:39 -0800] vi Makefile - 1860 [2018-12-11 11:45:01 -0800] maek 5commands. - 1861 [2018-12-11 11:45:06 -0800] make 5commands - 1862 [2018-12-11 11:45:10 -0800] vi Makefile - 1863 [2018-12-11 11:45:24 -0800] make 5commands - 1864 [2018-12-11 11:45:28 -0800] vi Makefile - 1865 [2018-12-11 11:45:33 -0800] ls - 1866 [2018-12-11 11:45:45 -0800] rm 5commands.cpio.xz - 1867 [2018-12-11 11:45:48 -0800] cp /tmp/initramfs.linux_amd64.cpio 5commands.cpio - 1868 [2018-12-11 11:45:49 -0800] vi Makefile - 1869 [2018-12-11 11:45:51 -0800] fg - 1870 [2018-12-11 11:46:02 -0800] make 5commands - 1871 [2018-12-11 11:46:17 -0800] cd linux/ - 1872 [2018-12-11 11:46:19 -0800] vi .config - 1873 [2018-12-11 11:46:30 -0800] make -j40 - 1874 [2018-12-11 11:46:40 -0800] cd .. - 1875 [2018-12-11 11:46:42 -0800] make 5commands - 1876 [2018-12-11 11:46:52 -0800] cd linux/ - 1877 [2018-12-11 11:46:58 -0800] ls -l arch/x86/boot/bzImage - 1878 [2018-12-11 11:47:01 -0800] cd .. - 1879 [2018-12-11 19:54:18 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1880 [2018-12-11 19:54:18 -0800] ls - 1881 [2018-12-11 19:54:26 -0800] cp linux//.config /tmp - 1882 [2018-12-11 19:54:31 -0800] cp 5commands.cpio /tmp - 1883 [2018-12-11 19:55:47 -0800] cp linux/arch/x86/boot/bzImage /tmp - 1884 [2018-12-11 19:57:58 -0800] cat Makefile - 1885 [2018-12-11 16:18:46 -0800] make d - 1886 [2018-12-11 16:26:21 -0800] make i - 1887 [2018-12-11 16:26:35 -0800] make b - 1888 [2018-12-11 16:27:17 -0800] cat Makefile - 1889 [2018-12-11 16:27:55 -0800] : - 1890 [2018-12-11 16:27:58 -0800] acme Makefile - 1891 [2018-12-11 16:28:16 -0800] make d - 1892 [2018-12-11 16:31:21 -0800] ip a - 1893 [2018-12-11 16:31:29 -0800] ./uinit - - 1894 [2018-12-11 16:31:30 -0800] ./uinit -r - 1895 [2018-12-11 16:31:33 -0800] vi DXECLEANER - 1896 [2018-12-11 16:31:55 -0800] ls -l ./DXECLEANER - 1897 [2018-12-11 16:32:23 -0800] cat Makefile - 1898 [2018-12-11 16:32:40 -0800] futk /tmp/x fv ./DXECLEANER clean - 1899 [2018-12-11 16:47:57 -0800] make i - 1900 [2018-12-11 16:48:10 -0800] make b - 1901 [2018-12-11 16:48:28 -0800] make d - 1902 [2018-12-11 16:49:20 -0800] vi Makefile - 1903 [2018-12-11 16:49:26 -0800] which futk - 1904 [2018-12-11 16:49:55 -0800] futk /tmp/x fv ./DXECLEANER clean - 1905 [2018-12-12 09:20:30 -0800] cd /usr/local/src/projects/ - 1906 [2018-12-12 09:20:48 -0800] cd nobinaryblobs/mainboards/tyan7102/ - 1907 [2018-12-12 09:20:48 -0800] ls - 1908 [2018-12-12 09:20:49 -0800] git diff - 1909 [2018-12-12 09:21:16 -0800] git status - 1910 [2018-12-12 09:21:17 -0800] more LIST - 1911 [2018-12-12 09:21:23 -0800] more RUN3 - 1912 [2018-12-12 09:21:28 -0800] git add RUN3 - 1913 [2018-12-12 09:21:30 -0800] git commit -as - 1914 [2018-12-12 09:21:40 -0800] git push - 1915 [2018-12-12 09:21:54 -0800] ls resert - 1916 [2018-12-12 09:21:56 -0800] ls reset - 1917 [2018-12-12 09:22:01 -0800] ps ax | grep cat - 1918 [2018-12-12 09:22:09 -0800] ps ax | grep cat.*tty - 1919 [2018-12-12 09:22:16 -0800] ps ax | grep minicom - 1920 [2018-12-12 09:22:25 -0800] sudo minicom usb1 - 1921 [2018-12-12 09:22:52 -0800] vi bin.reset - 1922 [2018-12-12 09:23:19 -0800] git add bin.reset - 1923 [2018-12-12 09:23:25 -0800] git commit -as - 1924 [2018-12-12 09:23:35 -0800] git push - 1925 [2018-12-12 09:23:45 -0800] cat bin.reset - 1926 [2018-12-12 09:25:09 -0800] cd ../../dragonsegg/ - 1927 [2018-12-12 09:25:10 -0800] cd coreboot/ - 1928 [2018-12-12 09:25:11 -0800] ls - 1929 [2018-12-12 09:25:12 -0800] git pull - 1930 [2018-12-12 09:27:40 -0800] cd /usr/local/src/chromiumos/ - 1931 [2018-12-12 09:27:40 -0800] ls - 1932 [2018-12-12 09:27:51 -0800] PATH=$PATH:/usr/local/src/depot_tools/ - 1933 [2018-12-12 09:27:54 -0800] cros_sdk - 1934 [2018-12-12 10:12:19 -0800] reset - 1935 [2018-12-12 10:12:39 -0800] cd ../projects/nobinaryblobs/mainboards/tyan7102/ - 1936 [2018-12-12 10:12:40 -0800] ls - 1937 [2018-12-12 10:12:44 -0800] sudo minicom usb1 - 1938 [2018-12-12 09:36:48 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1939 [2018-12-12 09:36:48 -0800] ls - 1940 [2018-12-12 09:37:00 -0800] ls -l 5commands.rom - 1941 [2018-12-12 09:37:06 -0800] cbfstool print 5commands.rom - 1942 [2018-12-12 09:37:13 -0800] cbfstool 5commands.rom print - 1943 [2018-12-12 09:37:47 -0800] cbfstool 5commands.rom extract -m x86 -n fallback/payload -f 5commands.self - 1944 [2018-12-12 09:37:51 -0800] ls -l 5commands.self - 1945 [2018-12-12 09:38:01 -0800] cat Makefile - 1946 [2018-12-12 09:38:32 -0800] vi Makefile - 1947 [2018-12-12 09:40:01 -0800] cbfstool - 1948 [2018-12-12 09:40:22 -0800] fg - 1949 [2018-12-12 09:41:36 -0800] ls -l /usr/local/src/chromiumos/chroot/home/rminnich/trunk - 1950 [2018-12-12 09:41:56 -0800] ln -s /usr/local/src/chromiumos/chroot/home/rminnich chromehome - 1951 [2018-12-12 09:42:07 -0800] ls chromehome - 1952 [2018-12-12 09:42:22 -0800] vi Makefile - 1953 [2018-12-12 09:42:50 -0800] make shelley - 1954 [2018-12-12 14:40:32 -0800] cd /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/ - 1955 [2018-12-12 14:40:33 -0800] ls - 1956 [2018-12-12 14:40:36 -0800] sudo minicom usb1 - 1957 [2018-12-12 16:54:30 -0800] ls /tmp/futk120101721/ - 1958 [2018-12-12 15:44:15 -0800] sudo minicom - 1959 [2018-12-13 10:23:22 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/coreboot/ - 1960 [2018-12-13 10:23:22 -0800] ls - 1961 [2018-12-13 10:23:27 -0800] ps ax | grep make - 1962 [2018-12-13 10:23:30 -0800] make - 1963 [2018-12-13 10:23:41 -0800] make iasl - 1964 [2018-12-13 10:23:46 -0800] make - 1965 [2018-12-13 10:27:38 -0800] cp ../config_dragonegg .config - 1966 [2018-12-13 10:27:39 -0800] make - 1967 [2018-12-13 10:27:58 -0800] make menuconfig - 1968 [2018-12-13 10:28:03 -0800] make - 1969 [2018-12-13 10:29:04 -0800] grep MAIN .config - 1970 [2018-12-13 10:36:23 -0800] mkdir -p 3rdparty/blobs/baseboard-dragonegg/fsp - 1971 [2018-12-13 10:36:29 -0800] cp /tmp/Fsp_M.fd 3rdparty/blobs/baseboard-dragonegg/fsp - 1972 [2018-12-13 10:36:30 -0800] make - 1973 [2018-12-13 10:37:03 -0800] cp /tmp/Fsp_S.fd 3rdparty/blobs/baseboard-dragonegg/fsp - 1974 [2018-12-13 10:37:07 -0800] make - 1975 [2018-12-13 10:38:05 -0800] cp /tmp/vbt.bin 3rdparty/blobs/baseboard-dragonegg/ - 1976 [2018-12-13 10:38:06 -0800] make - 1977 [2018-12-13 10:40:36 -0800] find /usr/local/src/chromiumos/ -name dragonsegg -type d -print - 1978 [2018-12-13 10:42:12 -0800] cp /tmp/ucode.bin 3rdparty/blobs/baseboard-dragonegg/ - 1979 [2018-12-13 10:42:14 -0800] make - 1980 [2018-12-13 10:44:26 -0800] vi .config - 1981 [2018-12-13 10:44:41 -0800] cp .config config+payload - 1982 [2018-12-13 10:44:44 -0800] make menuconfig - 1983 [2018-12-13 10:45:11 -0800] make - 1984 [2018-12-13 10:46:52 -0800] make Q= V=1 - 1985 [2018-12-13 10:48:01 -0800] cp /tmp/descriptor.bin 3rdparty/blobs/baseboard-dragonegg/ - 1986 [2018-12-13 10:48:01 -0800] make - 1987 [2018-12-13 10:48:18 -0800] make Q= V=1 - 1988* [2018-12-13 10:49:03 -0800] - 1989 [2018-12-13 10:49:04 -0800] make - 1990 [2018-12-13 10:49:26 -0800] history > ../IBUILTIT - 1991 [2018-12-13 16:43:03 -0800] make d - 1992 [2018-12-13 16:46:13 -0800] fgh - 1993 [2018-12-13 16:46:14 -0800] fg - 1994 [2018-12-13 16:46:19 -0800] jobs - 1995 [2018-12-14 15:08:31 -0800] futk /tmp/x fv ./DXECLEANER clean - 1996 [2018-12-14 16:39:03 -0800] dmesg - 1997 [2018-12-14 16:39:36 -0800] sudo dmesg -c - 1998 [2018-12-14 16:40:04 -0800] dmesg - 1999 [2018-12-20 09:52:31 -0800] ls - 2000 [2018-12-20 09:52:37 -0800] vi DXECLEANER - 2001 [2018-12-20 09:52:51 -0800] fg - 2002 [2018-12-20 09:53:23 -0800] ./futk ./futk.remove.99/99 fv - 2003 [2018-12-20 09:53:27 -0800] futk ./futk.remove.99/99 fv - 2004 [2018-12-20 09:58:24 -0800] ./DXECLEANER futk.remove.99/50 - 2005 [2018-12-20 10:04:00 -0800] vi DXECLEANER - 2006 [2018-12-20 10:04:23 -0800] ./DXECLEANER futk.remove.99/50 - 2007 [2018-12-20 10:09:41 -0800] ./DXECLEANER /tmp/x - 2008 [2018-12-20 10:19:37 -0800] ./DXECLEANER futk.remove.99/50 - 2009 [2018-12-20 10:23:21 -0800] ./DXECLEANER futk.remove.99/98 - 2010 [2018-12-20 10:27:06 -0800] futk futk.remove.99/98 bzImage splat 98.splat saverom - 2011 [2018-12-20 10:27:15 -0800] futk futk.remove.99/98 fv bzImage splat 98.splat saverom - 2012 [2018-12-20 10:27:40 -0800] ./DXECLEANER - 2013 [2018-12-20 10:27:46 -0800] ./DXECLEANER 98.splat - 2014 [2018-12-20 10:31:43 -0800] ls - 2015 [2018-12-20 10:31:58 -0800] more Makefile - 2016 [2018-12-20 10:32:20 -0800] make i - 2017 [2018-12-20 10:32:36 -0800] ./uinit - 2018 [2018-12-20 10:32:43 -0800] ./uinit -r - 2019 [2018-12-20 10:32:54 -0800] make b - 2020 [2018-12-20 10:33:14 -0800] futk futk.remove.99/98 fv bzImage splat 98.splat saverom - 2021* [2018-12-20 10:33:33 -0800] - 2022 [2018-12-20 10:37:06 -0800] ./uinit -h - 2023 [2018-12-20 10:37:25 -0800] ./uinit -C false & - 2024 [2018-12-20 10:37:30 -0800] fg - 2025 [2018-12-20 10:37:41 -0800] ./uinit -r & ./uinit -C=false - 2026 [2018-12-20 10:38:04 -0800] more Makefile - 2027 [2018-12-20 10:38:41 -0800] pushd ~/go/src/github.com/linuxboot/dut/uinit/ - 2028 [2018-12-20 10:38:43 -0800] go build - 2029 [2018-12-20 10:38:51 -0800] ./uinit -r & ./uinit -C=false - 2030 [2018-12-20 10:39:00 -0800] fg - 2031 [2018-12-20 10:39:14 -0800] ps ax | grep uinit - 2032 [2018-12-20 10:39:40 -0800] ./uinit -C=false - 2033 [2018-12-20 10:40:06 -0800] popd - 2034 [2018-12-20 10:40:10 -0800] cat Makefile - 2035 [2018-12-20 10:41:06 -0800] ls -l bzImage - 2036 [2018-12-20 10:41:10 -0800] rm bzImage - 2037 [2018-12-20 10:41:33 -0800] futk futk.remove.99/98 fv linux/arch/x86/boot/bzImage splat 98.splat saverom - 2038 [2018-12-20 10:41:54 -0800] ./DXECLEANER 98.splat - 2039 [2018-12-20 10:47:58 -0800] vi Makefile - 2040 [2018-12-20 10:49:28 -0800] make d98 - 2041 [2018-12-20 11:30:35 -0800] ls /tmp/futk* - 2042 [2018-12-20 11:30:57 -0800] ./DXECLEANER /tmp/futk824997279/4 - 2043* [2018-12-20 12:15:43 -0800] - 2044 [2018-12-20 12:32:13 -0800] ls - 2045 [2018-12-20 12:32:20 -0800] vi LIST - 2046 [2018-12-20 12:33:02 -0800] git status . - 2047 [2018-12-20 12:33:05 -0800] git commit -as - 2048 [2018-12-20 12:33:39 -0800] pusdh - 2049 [2018-12-20 12:33:40 -0800] pushd - 2050 [2018-12-20 12:33:59 -0800] pushd ~/go/src/github.com/linuxboot/dut/uinit/ - 2051 [2018-12-20 12:33:59 -0800] ls - 2052 [2018-12-20 12:34:05 -0800] vi dut.go - 2053 [2018-12-20 12:34:41 -0800] pushd - 2054 [2018-12-20 12:34:43 -0800] vi DXECLEANER - 2055 [2018-12-20 12:35:13 -0800] pushd - 2056 [2018-12-20 12:35:20 -0800] vi dut.go - 2057 [2018-12-20 12:35:41 -0800] go build - 2058 [2018-12-20 12:35:47 -0800] goimports -w *.go - 2059 [2018-12-20 12:35:54 -0800] go build - 2060 [2018-12-20 12:35:57 -0800] pushd - 2061 [2018-12-20 12:35:58 -0800] make i - 2062 [2018-12-20 12:36:51 -0800] make b - 2063 [2018-12-20 12:37:19 -0800] history -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ls /tmp/*/4 -[?2004l/tmp/futk127840641/4 /tmp/futk824997279/4 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp tmp/futk824997279/tmp/futk824997279/4 runRUN4.4.rom -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 326L, 9545C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init githubb.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \comment here \comment PcRtc \comment FpgaDxe \comment LegacyInterrupt \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25ld98:futk 98.splat fv ./DXECLEANER clean14,1Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l5,1-8[?25h[?25l2-9[?25h[?25l7-14[?25h[?25l9-16[?25h[?25l7-14[?25h[?25l8.splat fv ./DXECLEANER clean[?25h[?25l.splat fv ./DXECLEANER clean[?25h[?25lsplat fv ./DXECLEANER clean[?25h[?25lplat fv ./DXECLEANER clean[?25h[?25llat fv ./DXECLEANER clean[?25h[?25lat fv ./DXECLEANER clean[?25h[?25lt fv ./DXECLEANER clean[?25h[?25l fv ./DXECLEANER clean[?25h[?25l-- INSERT --15,7-14Top[?25h[?25lR fv ./DXECLEANER clean8-15[?25h[?25lU fv ./DXECLEANER clean9-16[?25h[?25lN fv ./DXECLEANER clean10-17[?25h[?25l4 fv ./DXECLEANER clean1-18[?25h[?25l. fv ./DXECLEANER clean2-19[?25h[?25l4 fv ./DXECLEANER clean3-20[?25h[?25l. fv ./DXECLEANER clean4-21[?25h[?25lr fv ./DXECLEANER clean5-22[?25h[?25lo fv ./DXECLEANER clean6-23[?25h[?25lm fv ./DXECLEANER clean7-24[?25h[?25l15,16-23 Top[?25h[?25l-- INSERT --16,1Top16,1Top[?25h[?25l16,0-1Top[?25h[?25l5,1-8[?25h[?25l4,4 [?25h[?25l3[?25h[?25l2[?25h[?25l8:[?25h[?25l5[?25h[?25l4[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9589C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sls -[?2004l98.splat commentsetupcrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LIST removeBMCcrap.bin RUN3 x.bin -bin.reset config-4.13.0-rc7 EATIT ipmisucks.bin LOG removemorecrap.bin RUN4.4.rom xxx -blacklist DIT fail.bin L Makefile removesetupcrap.bin tyan7102.bin yyy -commentmorecrap.bin dxeclean.bin futk.remove.99 linux NOTES removesomecrap.bin uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ script RUN -RUN3 RUN4.4.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ script RUN -RUN3 RUN4.4.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ script RUN -RUN3 RUN4.4.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ script RUN4 -[?2004lScript started, file is RUN4 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d4 -[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean -2018/12/20 12:38:32 Found 310 things -2018/12/20 12:38:32 script is ./DXECLEANER -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8) -2018/12/20 12:38:42 removed [0xc000025200] -+ echo TEST /tmp/futk925337781/1 -TEST /tmp/futk925337781/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707 -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614 -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 We are now done ...................... -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2018/12/20 12:44:44 removed [0xc0084f8b00] -+ echo TEST /tmp/futk925337781/2 -TEST /tmp/futk925337781/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:46:03 Listening on 192.168.0.1:8080 at 2018-12-20 12:46:03.780886704 -0800 PST m=+0.005034144 -2018/12/20 12:48:24 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:50:31 Accepted &{{0xc00013a080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 12:50:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/2 -2018/12/20 12:50:31 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2018/12/20 12:50:31 removed [0xc000025c80] -+ echo TEST /tmp/futk925337781/3 -TEST /tmp/futk925337781/3 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/3 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:51:50 Listening on 192.168.0.1:8080 at 2018-12-20 12:51:50.227456387 -0800 PST m=+0.005158566 -2018/12/20 12:54:14 Accepted &{{0xc000148080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:56:20 Accepted &{{0xc000148180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 12:56:20 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3 -2018/12/20 12:56:20 Try to remove 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell (7C04A583-9E3E-4F1C-AD65-E05268D0B4D1) -2018/12/20 12:56:20 removed [0xc0081d1c80] -+ echo TEST /tmp/futk925337781/4 -TEST /tmp/futk925337781/4 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/4 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:57:35 Listening on 192.168.0.1:8080 at 2018-12-20 12:57:35.623116445 -0800 PST m=+0.005039982 -2018/12/20 13:00:35 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 13:00:35.623594932 -0800 PST m=+180.005518262 -2018/12/20 13:00:35 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 13:00:35 We are now done ...................... -2018/12/20 13:00:35 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 13:00:35 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2018/12/20 13:00:35 removed [0xc000024180] -+ echo TEST /tmp/futk925337781/5 -TEST /tmp/futk925337781/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/5 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:01:54 Listening on 192.168.0.1:8080 at 2018-12-20 13:01:54.539280467 -0800 PST m=+0.004759517 -2018/12/20 13:04:18 Accepted &{{0xc000136080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:06:24 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:06:24 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/5 -2018/12/20 13:06:24 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2018/12/20 13:06:24 removed [0xc008190280] -+ echo TEST /tmp/futk925337781/6 -TEST /tmp/futk925337781/6 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/6 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:07:42 Listening on 192.168.0.1:8080 at 2018-12-20 13:07:42.852856141 -0800 PST m=+0.004094102 -2018/12/20 13:10:06 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:12:12 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:12:12 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6 -2018/12/20 13:12:12 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2018/12/20 13:12:12 removed [0xc008191a80] -+ echo TEST /tmp/futk925337781/7 -TEST /tmp/futk925337781/7 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/7 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:13:31 Listening on 192.168.0.1:8080 at 2018-12-20 13:13:31.437604493 -0800 PST m=+0.004177998 -2018/12/20 13:15:54 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:18:00 Accepted &{{0xc00014e080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:18:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/7 -2018/12/20 13:18:00 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2018/12/20 13:18:00 removed [0xc008191380] -+ echo TEST /tmp/futk925337781/8 -TEST /tmp/futk925337781/8 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/8 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:19:19 Listening on 192.168.0.1:8080 at 2018-12-20 13:19:19.603503008 -0800 PST m=+0.004415854 -2018/12/20 13:21:43 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:23:49 Accepted &{{0xc00013a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:23:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/8 -2018/12/20 13:23:49 Try to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP (74346897-9E0C-4B41-BF1F-BAA1ECB85DA6) -2018/12/20 13:23:49 removed [0xc000025d00] -+ echo TEST /tmp/futk925337781/9 -TEST /tmp/futk925337781/9 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/9 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:25:07 Listening on 192.168.0.1:8080 at 2018-12-20 13:25:07.76282306 -0800 PST m=+0.004422579 -2018/12/20 13:27:31 Accepted &{{0xc000148100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:29:37 Accepted &{{0xc000148200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:29:37 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9 -2018/12/20 13:29:37 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2018/12/20 13:29:37 removed [0xc008191480] -+ echo TEST /tmp/futk925337781/10 -TEST /tmp/futk925337781/10 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/10 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:30:56 Listening on 192.168.0.1:8080 at 2018-12-20 13:30:56.15073056 -0800 PST m=+0.004445203 -2018/12/20 13:33:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:35:25 Accepted &{{0xc00018a000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:35:25 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/10 -2018/12/20 13:35:25 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2018/12/20 13:35:25 removed [0xc008191980] -+ echo TEST /tmp/futk925337781/11 -TEST /tmp/futk925337781/11 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/11 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:36:43 Listening on 192.168.0.1:8080 at 2018-12-20 13:36:43.750202933 -0800 PST m=+0.004256668 -2018/12/20 13:39:07 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:41:13 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:41:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/11 -2018/12/20 13:41:13 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2018/12/20 13:41:13 removed [0xc0084f8500] -+ echo TEST /tmp/futk925337781/12 -TEST /tmp/futk925337781/12 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/12 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:42:32 Listening on 192.168.0.1:8080 at 2018-12-20 13:42:32.023047406 -0800 PST m=+0.003844326 -2018/12/20 13:44:55 Accepted &{{0xc00015c000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:47:01 Accepted &{{0xc000148100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:47:01 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12 -2018/12/20 13:47:01 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2018/12/20 13:47:01 removed [0xc008190a80] -+ echo TEST /tmp/futk925337781/13 -TEST /tmp/futk925337781/13 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/13 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:48:20 Listening on 192.168.0.1:8080 at 2018-12-20 13:48:20.25521162 -0800 PST m=+0.005265737 -2018/12/20 13:50:43 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:52:49 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:52:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/13 -2018/12/20 13:52:49 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2018/12/20 13:52:49 removed [0xc008191100] -+ echo TEST /tmp/futk925337781/14 -TEST /tmp/futk925337781/14 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/14 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:54:08 Listening on 192.168.0.1:8080 at 2018-12-20 13:54:08.051297567 -0800 PST m=+0.004703264 -2018/12/20 13:56:31 Accepted &{{0xc00014e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:58:37 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:58:37 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/14 -2018/12/20 13:58:37 Try to remove 9F3A0016-AE55-4288-829D-D55FD3AAC347:EFI_FV_FILETYPE_DRIVER:AmiBoardInfo2 (9F3A0016-AE55-4288-829D-D55FD3AAC347) -2018/12/20 13:58:37 removed [0xc000025180] -+ echo TEST /tmp/futk925337781/15 -TEST /tmp/futk925337781/15 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/15 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:59:55 Listening on 192.168.0.1:8080 at 2018-12-20 13:59:55.875862819 -0800 PST m=+0.005233399 -2018/12/20 14:02:55 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:02:55.876362681 -0800 PST m=+180.005733076 -2018/12/20 14:02:55 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:02:55 We are now done ...................... -2018/12/20 14:02:55 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:02:55 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2018/12/20 14:02:55 removed [0xc000025900] -+ echo TEST /tmp/futk925337781/16 -TEST /tmp/futk925337781/16 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/16 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:04:14 Listening on 192.168.0.1:8080 at 2018-12-20 14:04:14.279108354 -0800 PST m=+0.004512363 -2018/12/20 14:06:38 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:08:44 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:08:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16 -2018/12/20 14:08:44 Try to remove E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017:EFI_FV_FILETYPE_DRIVER:PciPlatform (E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017) -2018/12/20 14:08:44 removed [0xc000025580] -+ echo TEST /tmp/futk925337781/17 -TEST /tmp/futk925337781/17 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/17 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:10:02 Listening on 192.168.0.1:8080 at 2018-12-20 14:10:02.898391295 -0800 PST m=+0.005366065 -2018/12/20 14:13:02 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:13:02.898837903 -0800 PST m=+180.005812477 -2018/12/20 14:13:02 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:13:02 We are now done ...................... -2018/12/20 14:13:02 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:13:02 Try to remove 16D0A23E-C09C-407D-A14A-AD058FDD0CA1:EFI_FV_FILETYPE_DRIVER:ACPI (16D0A23E-C09C-407D-A14A-AD058FDD0CA1) -2018/12/20 14:13:02 removed [0xc000024d00] -+ echo TEST /tmp/futk925337781/18 -TEST /tmp/futk925337781/18 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/18 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:14:21 Listening on 192.168.0.1:8080 at 2018-12-20 14:14:21.227350863 -0800 PST m=+0.004798021 -2018/12/20 14:17:21 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:17:21.227773117 -0800 PST m=+180.005220134 -2018/12/20 14:17:21 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:17:21 We are now done ...................... -2018/12/20 14:17:21 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:17:21 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2018/12/20 14:17:21 removed [0xc000025080] -+ echo TEST /tmp/futk925337781/19 -TEST /tmp/futk925337781/19 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/19 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:18:39 Listening on 192.168.0.1:8080 at 2018-12-20 14:18:39.454710481 -0800 PST m=+0.005468106 -2018/12/20 14:20:59 Accepted &{{0xc000166000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:23:05 Accepted &{{0xc00014c100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:23:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/19 -2018/12/20 14:23:05 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2018/12/20 14:23:05 removed [0xc000024f80] -+ echo TEST /tmp/futk925337781/20 -TEST /tmp/futk925337781/20 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/20 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:24:23 Listening on 192.168.0.1:8080 at 2018-12-20 14:24:23.70163879 -0800 PST m=+0.005006947 -2018/12/20 14:26:47 Accepted &{{0xc000160100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:28:52 Accepted &{{0xc000160200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:28:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/20 -2018/12/20 14:28:52 Try to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe (BDCE85BB-FBAA-4F4E-9264-501A2C249581) -2018/12/20 14:28:52 removed [0xc000024d80] -+ echo TEST /tmp/futk925337781/21 -TEST /tmp/futk925337781/21 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/21 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:30:10 Listening on 192.168.0.1:8080 at 2018-12-20 14:30:10.891835915 -0800 PST m=+0.005548472 -2018/12/20 14:32:34 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:34:40 Accepted &{{0xc000156080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:34:40 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/21 -2018/12/20 14:34:40 Try to remove 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe (80CF7257-87AB-47F9-A3FE-D50B76D89541) -2018/12/20 14:34:40 removed [0xc0084f8380] -+ echo TEST /tmp/futk925337781/22 -TEST /tmp/futk925337781/22 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/22 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:35:58 Listening on 192.168.0.1:8080 at 2018-12-20 14:35:58.491482834 -0800 PST m=+0.003533855 -2018/12/20 14:38:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:38:58.491841772 -0800 PST m=+180.003892685 -2018/12/20 14:38:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:38:58 We are now done ...................... -2018/12/20 14:38:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:38:58 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2018/12/20 14:38:58 removed [0xc008191900] -+ echo TEST /tmp/futk925337781/23 -TEST /tmp/futk925337781/23 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/23 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:40:16 Listening on 192.168.0.1:8080 at 2018-12-20 14:40:16.584140961 -0800 PST m=+0.005293856 -2018/12/20 14:42:40 Accepted &{{0xc000146080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:44:46 Accepted &{{0xc00014c100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:44:46 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/23 -2018/12/20 14:44:46 Try to remove DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe (DE5FC8BF-06ED-4DC5-BA9D-29F711699A85) -2018/12/20 14:44:46 removed [0xc008191200] -+ echo TEST /tmp/futk925337781/24 -TEST /tmp/futk925337781/24 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/24 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:46:04 Listening on 192.168.0.1:8080 at 2018-12-20 14:46:04.680644696 -0800 PST m=+0.005399078 -2018/12/20 14:48:28 Accepted &{{0xc000142080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:50:33 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:50:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24 -2018/12/20 14:50:33 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2018/12/20 14:50:33 removed [0xc000025880] -+ echo TEST /tmp/futk925337781/25 -TEST /tmp/futk925337781/25 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/25 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:51:52 Listening on 192.168.0.1:8080 at 2018-12-20 14:51:52.161382596 -0800 PST m=+0.002835227 -2018/12/20 14:54:12 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:56:17 Accepted &{{0xc00014a100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:56:17 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/25 -2018/12/20 14:56:17 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2018/12/20 14:56:17 removed [0xc008191400] -+ echo TEST /tmp/futk925337781/26 -TEST /tmp/futk925337781/26 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/26 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:57:36 Listening on 192.168.0.1:8080 at 2018-12-20 14:57:36.140896232 -0800 PST m=+0.004997766 -2018/12/20 14:59:59 Accepted &{{0xc000150100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:02:05 Accepted &{{0xc000150200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:02:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/26 -2018/12/20 15:02:05 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2018/12/20 15:02:05 removed [0xc0084f8580] -+ echo TEST /tmp/futk925337781/27 -TEST /tmp/futk925337781/27 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/27 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:03:23 Listening on 192.168.0.1:8080 at 2018-12-20 15:03:23.554884706 -0800 PST m=+0.004972462 -2018/12/20 15:05:47 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:07:52 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:07:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/27 -2018/12/20 15:07:52 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2018/12/20 15:07:52 removed [0xc008190680] -+ echo TEST /tmp/futk925337781/28 -TEST /tmp/futk925337781/28 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/28 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:09:10 Listening on 192.168.0.1:8080 at 2018-12-20 15:09:10.874233313 -0800 PST m=+0.004453773 -2018/12/20 15:11:35 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:13:41 Accepted &{{0xc00014c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:13:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28 -2018/12/20 15:13:41 Try to remove AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 (AA7B4695-00B4-4468-AD92-99370AC031C5) -2018/12/20 15:13:41 removed [0xc000025500] -+ echo TEST /tmp/futk925337781/29 -TEST /tmp/futk925337781/29 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/29 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:14:59 Listening on 192.168.0.1:8080 at 2018-12-20 15:14:59.488662872 -0800 PST m=+0.004774153 -2018/12/20 15:17:22 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:20:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 15:20:22.574051137 -0800 PST m=+323.090162248 -2018/12/20 15:20:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 15:20:22 We are now done ...................... -2018/12/20 15:20:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 15:20:22 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2018/12/20 15:20:22 removed [0xc000025400] -+ echo TEST /tmp/futk925337781/30 -TEST /tmp/futk925337781/30 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/30 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:21:41 Listening on 192.168.0.1:8080 at 2018-12-20 15:21:41.383482233 -0800 PST m=+0.002904115 -2018/12/20 15:24:05 Accepted &{{0xc000158000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:26:10 Accepted &{{0xc000146100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:26:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/30 -2018/12/20 15:26:10 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2018/12/20 15:26:10 removed [0xc008191580] -+ echo TEST /tmp/futk925337781/31 -TEST /tmp/futk925337781/31 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/31 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:27:29 Listening on 192.168.0.1:8080 at 2018-12-20 15:27:29.258208759 -0800 PST m=+0.005189823 -2018/12/20 15:29:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:31:58 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:31:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/31 -2018/12/20 15:31:58 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2018/12/20 15:31:58 removed [0xc000024400] -+ echo TEST /tmp/futk925337781/32 -TEST /tmp/futk925337781/32 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/32 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:33:17 Listening on 192.168.0.1:8080 at 2018-12-20 15:33:17.128157519 -0800 PST m=+0.004507699 -2018/12/20 15:35:40 Accepted &{{0xc00014c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:37:46 Accepted &{{0xc00014c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:37:46 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/32 -2018/12/20 15:37:46 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2018/12/20 15:37:46 removed [0xc000024e00] -+ echo TEST /tmp/futk925337781/33 -TEST /tmp/futk925337781/33 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/33 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:39:05 Listening on 192.168.0.1:8080 at 2018-12-20 15:39:05.286626817 -0800 PST m=+0.004493377 -2018/12/20 15:41:28 Accepted &{{0xc00014a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:43:34 Accepted &{{0xc00014a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:43:34 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33 -2018/12/20 15:43:34 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2018/12/20 15:43:34 removed [0xc008191280] -+ echo TEST /tmp/futk925337781/34 -TEST /tmp/futk925337781/34 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/34 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:44:53 Listening on 192.168.0.1:8080 at 2018-12-20 15:44:53.383915713 -0800 PST m=+0.004908909 -2018/12/20 15:47:17 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:49:22 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:49:22 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/34 -2018/12/20 15:49:22 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2018/12/20 15:49:22 removed [0xc000025f00] -+ echo TEST /tmp/futk925337781/35 -TEST /tmp/futk925337781/35 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/35 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:50:41 Listening on 192.168.0.1:8080 at 2018-12-20 15:50:41.334210235 -0800 PST m=+0.005179862 -2018/12/20 15:53:04 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:55:10 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:55:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35 -2018/12/20 15:55:10 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2018/12/20 15:55:10 removed [0xc000024b00] -+ echo TEST /tmp/futk925337781/36 -TEST /tmp/futk925337781/36 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/36 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:56:28 Listening on 192.168.0.1:8080 at 2018-12-20 15:56:28.978216852 -0800 PST m=+0.004335817 -2018/12/20 15:58:52 Accepted &{{0xc000154100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:00:58 Accepted &{{0xc000154200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:00:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/36 -2018/12/20 16:00:58 Try to remove A0BAD9F7-AB78-491B-B583-C52B7F84B9E0:EFI_FV_FILETYPE_DRIVER:SmmControl (A0BAD9F7-AB78-491B-B583-C52B7F84B9E0) -2018/12/20 16:00:58 removed [0xc008191080] -+ echo TEST /tmp/futk925337781/37 -TEST /tmp/futk925337781/37 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/37 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:02:16 Listening on 192.168.0.1:8080 at 2018-12-20 16:02:16.903857431 -0800 PST m=+0.005434827 -2018/12/20 16:05:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:05:16.904347909 -0800 PST m=+180.005925115 -2018/12/20 16:05:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:05:16 We are now done ...................... -2018/12/20 16:05:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:05:16 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2018/12/20 16:05:16 removed [0xc000025b00] -+ echo TEST /tmp/futk925337781/38 -TEST /tmp/futk925337781/38 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/38 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:06:35 Listening on 192.168.0.1:8080 at 2018-12-20 16:06:35.058778571 -0800 PST m=+0.004941072 -2018/12/20 16:08:58 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:11:04 Accepted &{{0xc000140100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:11:04 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38 -2018/12/20 16:11:04 Try to remove 8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF:EFI_FV_FILETYPE_DRIVER:Bds (8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF) -2018/12/20 16:11:04 removed [0xc000024300] -+ echo TEST /tmp/futk925337781/39 -TEST /tmp/futk925337781/39 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/39 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:12:22 Listening on 192.168.0.1:8080 at 2018-12-20 16:12:22.712610466 -0800 PST m=+0.005274340 -2018/12/20 16:15:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:15:22.713095197 -0800 PST m=+180.005758864 -2018/12/20 16:15:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:15:22 We are now done ...................... -2018/12/20 16:15:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:15:22 Try to remove 2FA2A6DA-11D5-4DC3-999A-749648B03C56:EFI_FV_FILETYPE_DRIVER:PiSmmIpl (2FA2A6DA-11D5-4DC3-999A-749648B03C56) -2018/12/20 16:15:22 removed [0xc008190e00] -+ echo TEST /tmp/futk925337781/40 -TEST /tmp/futk925337781/40 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/40 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:16:40 Listening on 192.168.0.1:8080 at 2018-12-20 16:16:40.97049864 -0800 PST m=+0.004998527 -2018/12/20 16:19:40 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:19:40.970921052 -0800 PST m=+180.005420863 -2018/12/20 16:19:40 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:19:40 We are now done ...................... -2018/12/20 16:19:40 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:19:40 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2018/12/20 16:19:40 removed [0xc008191300] -+ echo TEST /tmp/futk925337781/41 -TEST /tmp/futk925337781/41 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/41 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:20:59 Listening on 192.168.0.1:8080 at 2018-12-20 16:20:59.024877143 -0800 PST m=+0.005239209 -2018/12/20 16:23:22 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:25:28 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:25:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41 -2018/12/20 16:25:28 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2018/12/20 16:25:28 removed [0xc008190800] -+ echo TEST /tmp/futk925337781/42 -TEST /tmp/futk925337781/42 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/42 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:26:46 Listening on 192.168.0.1:8080 at 2018-12-20 16:26:46.6244388 -0800 PST m=+0.005275603 -2018/12/20 16:29:10 Accepted &{{0xc00017e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:31:15 Accepted &{{0xc00015c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:31:15 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42 -2018/12/20 16:31:15 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2018/12/20 16:31:15 removed [0xc000025700] -+ echo TEST /tmp/futk925337781/43 -TEST /tmp/futk925337781/43 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/43 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:32:34 Listening on 192.168.0.1:8080 at 2018-12-20 16:32:34.901920731 -0800 PST m=+0.005000936 -2018/12/20 16:34:58 Accepted &{{0xc00013c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:37:04 Accepted &{{0xc00013c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:37:04 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/43 -2018/12/20 16:37:04 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2018/12/20 16:37:04 removed [0xc000025a80] -+ echo TEST /tmp/futk925337781/44 -TEST /tmp/futk925337781/44 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/44 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:38:22 Listening on 192.168.0.1:8080 at 2018-12-20 16:38:22.544225362 -0800 PST m=+0.005281778 -2018/12/20 16:40:45 Accepted &{{0xc000172000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:42:51 Accepted &{{0xc00014e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:42:51 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/44 -2018/12/20 16:42:51 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2018/12/20 16:42:51 removed [0xc008191800] -+ echo TEST /tmp/futk925337781/45 -TEST /tmp/futk925337781/45 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/45 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:44:09 Listening on 192.168.0.1:8080 at 2018-12-20 16:44:09.975817317 -0800 PST m=+0.001989953 -2018/12/20 16:46:33 Accepted &{{0xc000134180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:48:38 Accepted &{{0xc000134280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:48:38 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/45 -2018/12/20 16:48:38 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2018/12/20 16:48:38 removed [0xc000025e00] -+ echo TEST /tmp/futk925337781/46 -TEST /tmp/futk925337781/46 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/46 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:49:56 Listening on 192.168.0.1:8080 at 2018-12-20 16:49:56.744182636 -0800 PST m=+0.005385736 -2018/12/20 16:52:20 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:54:25 Accepted &{{0xc000154080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:54:25 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46 -2018/12/20 16:54:25 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2018/12/20 16:54:25 removed [0xc0084f8a80] -+ echo TEST /tmp/futk925337781/47 -TEST /tmp/futk925337781/47 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/47 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:55:44 Listening on 192.168.0.1:8080 at 2018-12-20 16:55:44.193157595 -0800 PST m=+0.004100483 -2018/12/20 16:58:07 Accepted &{{0xc000142100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:00:13 Accepted &{{0xc000142200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:00:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47 -2018/12/20 17:00:13 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2018/12/20 17:00:13 removed [0xc000024a00] -+ echo TEST /tmp/futk925337781/48 -TEST /tmp/futk925337781/48 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/48 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:01:31 Listening on 192.168.0.1:8080 at 2018-12-20 17:01:31.714342556 -0800 PST m=+0.005571708 -2018/12/20 17:03:52 Accepted &{{0xc000162180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:05:56 Accepted &{{0xc000162280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:05:56 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/48 -2018/12/20 17:05:56 Try to remove 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910:EFI_FV_FILETYPE_DRIVER:PciRootBridge (80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910) -2018/12/20 17:05:56 removed [0xc000024f00] -+ echo TEST /tmp/futk925337781/49 -TEST /tmp/futk925337781/49 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/49 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:07:14 Listening on 192.168.0.1:8080 at 2018-12-20 17:07:14.347287953 -0800 PST m=+0.005317861 -2018/12/20 17:10:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:10:14.34774936 -0800 PST m=+180.005779118 -2018/12/20 17:10:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:10:14 We are now done ...................... -2018/12/20 17:10:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:10:14 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2018/12/20 17:10:14 removed [0xc008190980] -+ echo TEST /tmp/futk925337781/50 -TEST /tmp/futk925337781/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:11:32 Listening on 192.168.0.1:8080 at 2018-12-20 17:11:32.514093772 -0800 PST m=+0.005061727 -2018/12/20 17:13:53 Accepted &{{0xc000154100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:15:56 Accepted &{{0xc000154200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:15:56 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/50 -2018/12/20 17:15:56 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2018/12/20 17:15:56 removed [0xc000025e80] -+ echo TEST /tmp/futk925337781/51 -TEST /tmp/futk925337781/51 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/51 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:17:15 Listening on 192.168.0.1:8080 at 2018-12-20 17:17:15.563732949 -0800 PST m=+0.004555196 -2018/12/20 17:19:36 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:21:39 Accepted &{{0xc000146100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:21:39 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51 -2018/12/20 17:21:39 Try to remove 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe (1807040D-5934-41A2-A088-8E0F777F71AB) -2018/12/20 17:21:39 removed [0xc0084f8300] -+ echo TEST /tmp/futk925337781/52 -TEST /tmp/futk925337781/52 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/52 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:22:58 Listening on 192.168.0.1:8080 at 2018-12-20 17:22:58.055475377 -0800 PST m=+0.005275386 -2018/12/20 17:25:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:25:58.05594419 -0800 PST m=+180.005744008 -2018/12/20 17:25:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:25:58 We are now done ...................... -2018/12/20 17:25:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:25:58 Try to remove 274F0C8F-9E57-41D8-9966-29CCD48D31C2:EFI_FV_FILETYPE_DRIVER:SmmAccess (274F0C8F-9E57-41D8-9966-29CCD48D31C2) -2018/12/20 17:25:58 removed [0xc000024880] -+ echo TEST /tmp/futk925337781/53 -TEST /tmp/futk925337781/53 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/53 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:27:16 Listening on 192.168.0.1:8080 at 2018-12-20 17:27:16.344360431 -0800 PST m=+0.004669901 -2018/12/20 17:30:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:30:16.344836429 -0800 PST m=+180.005145740 -2018/12/20 17:30:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:30:16 We are now done ...................... -2018/12/20 17:30:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:30:16 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2018/12/20 17:30:16 removed [0xc008190b80] -+ echo TEST /tmp/futk925337781/54 -TEST /tmp/futk925337781/54 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/54 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:31:34 Listening on 192.168.0.1:8080 at 2018-12-20 17:31:34.83324492 -0800 PST m=+0.004844957 -2018/12/20 17:33:55 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:35:59 Accepted &{{0xc00014c180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:35:59 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/54 -2018/12/20 17:35:59 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2018/12/20 17:35:59 removed [0xc008191880] -+ echo TEST /tmp/futk925337781/55 -TEST /tmp/futk925337781/55 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/55 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:37:17 Listening on 192.168.0.1:8080 at 2018-12-20 17:37:17.556741855 -0800 PST m=+0.005026625 -2018/12/20 17:39:38 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:41:41 Accepted &{{0xc000150100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:41:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/55 -2018/12/20 17:41:41 Try to remove B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios (B13EDD38-684C-41ED-A305-D7B7E32497DF) -2018/12/20 17:41:41 removed [0xc008190880] -+ echo TEST /tmp/futk925337781/56 -TEST /tmp/futk925337781/56 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/56 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:42:59 Listening on 192.168.0.1:8080 at 2018-12-20 17:42:59.629389097 -0800 PST m=+0.004689203 -2018/12/20 17:45:59 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:45:59.629831992 -0800 PST m=+180.005131895 -2018/12/20 17:45:59 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:45:59 We are now done ...................... -2018/12/20 17:45:59 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:45:59 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2018/12/20 17:45:59 removed [0xc008190d00] -+ echo TEST /tmp/futk925337781/57 -TEST /tmp/futk925337781/57 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/57 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:47:17 Listening on 192.168.0.1:8080 at 2018-12-20 17:47:17.495849789 -0800 PST m=+0.004930173 -2018/12/20 17:49:38 Accepted &{{0xc000144100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:51:42 Accepted &{{0xc000144200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:51:42 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/57 -2018/12/20 17:51:42 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2018/12/20 17:51:42 removed [0xc008190f00] -+ echo TEST /tmp/futk925337781/58 -TEST /tmp/futk925337781/58 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/58 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:52:59 Listening on 192.168.0.1:8080 at 2018-12-20 17:52:59.756822581 -0800 PST m=+0.005077237 -2018/12/20 17:55:20 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:57:23 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:57:23 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/58 -2018/12/20 17:57:23 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2018/12/20 17:57:23 removed [0xc008190c00] -+ echo TEST /tmp/futk925337781/59 -TEST /tmp/futk925337781/59 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/59 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:58:41 Listening on 192.168.0.1:8080 at 2018-12-20 17:58:41.174667602 -0800 PST m=+0.005240425 -2018/12/20 18:01:01 Accepted &{{0xc00014e100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:03:05 Accepted &{{0xc00014e200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:03:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/59 -2018/12/20 18:03:05 Try to remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase (348C4D62-BFBD-4882-9ECE-C80BB1C4783B) -2018/12/20 18:03:05 removed [0xc000024480] -+ echo TEST /tmp/futk925337781/60 -TEST /tmp/futk925337781/60 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/60 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:04:23 Listening on 192.168.0.1:8080 at 2018-12-20 18:04:23.37435198 -0800 PST m=+0.005182644 -2018/12/20 18:07:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 18:07:23.374708801 -0800 PST m=+180.005539427 -2018/12/20 18:07:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:07:23 We are now done ...................... -2018/12/20 18:07:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:07:23 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2018/12/20 18:07:23 removed [0xc008190c80] -+ echo TEST /tmp/futk925337781/61 -TEST /tmp/futk925337781/61 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/61 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:08:41 Listening on 192.168.0.1:8080 at 2018-12-20 18:08:41.132668085 -0800 PST m=+0.005357167 -2018/12/20 18:11:02 Accepted &{{0xc000152080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:13:05 Accepted &{{0xc000152180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:13:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/61 -2018/12/20 18:13:05 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2018/12/20 18:13:05 removed [0xc0084f9580] -+ echo TEST /tmp/futk925337781/62 -TEST /tmp/futk925337781/62 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/62 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:14:23 Listening on 192.168.0.1:8080 at 2018-12-20 18:14:23.443464198 -0800 PST m=+0.005498427 -2018/12/20 18:16:44 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:18:47 Accepted &{{0xc000148100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:18:47 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/62 -2018/12/20 18:18:47 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2018/12/20 18:18:47 removed [0xc000025f80] -+ echo TEST /tmp/futk925337781/63 -TEST /tmp/futk925337781/63 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/63 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:20:05 Listening on 192.168.0.1:8080 at 2018-12-20 18:20:05.127781304 -0800 PST m=+0.004805826 -2018/12/20 18:22:26 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:24:29 Accepted &{{0xc000150180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:24:29 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63 -2018/12/20 18:24:29 Try to remove DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm (DEB0EE00-18DF-415C-AF03-74D09B0AAD87) -2018/12/20 18:24:29 removed [0xc008190f80] -+ echo TEST /tmp/futk925337781/64 -TEST /tmp/futk925337781/64 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/64 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:25:47 Listening on 192.168.0.1:8080 at 2018-12-20 18:25:47.41812751 -0800 PST m=+0.005003202 -2018/12/20 18:28:08 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:30:11 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:30:11 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/64 -2018/12/20 18:30:11 Try to remove 06D20D84-A032-4E25-969A-346D255E46D1:EFI_FV_FILETYPE_DRIVER:CpuCsrAccess (06D20D84-A032-4E25-969A-346D255E46D1) -2018/12/20 18:30:11 removed [0xc008190e80] -+ echo TEST /tmp/futk925337781/65 -TEST /tmp/futk925337781/65 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/65 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:31:29 Listening on 192.168.0.1:8080 at 2018-12-20 18:31:29.417255251 -0800 PST m=+0.004313930 -2018/12/20 18:34:29 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 18:34:29.417711988 -0800 PST m=+180.004770540 -2018/12/20 18:34:29 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:34:29 We are now done ...................... -2018/12/20 18:34:29 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:34:29 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2018/12/20 18:34:29 removed [0xc0084f9500] -+ echo TEST /tmp/futk925337781/66 -TEST /tmp/futk925337781/66 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/66 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:35:47 Listening on 192.168.0.1:8080 at 2018-12-20 18:35:47.322068839 -0800 PST m=+0.005147984 -2018/12/20 18:38:08 Accepted &{{0xc000156080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:40:11 Accepted &{{0xc000156180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:40:11 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/66 -2018/12/20 18:40:11 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2018/12/20 18:40:11 removed [0xc008190580] -+ echo TEST /tmp/futk925337781/67 -TEST /tmp/futk925337781/67 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/67 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:41:29 Listening on 192.168.0.1:8080 at 2018-12-20 18:41:29.40350807 -0800 PST m=+0.004335908 -2018/12/20 18:43:50 Accepted &{{0xc00016c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:45:53 Accepted &{{0xc00016c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:45:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67 -2018/12/20 18:45:53 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2018/12/20 18:45:53 removed [0xc000025100] -+ echo TEST /tmp/futk925337781/68 -TEST /tmp/futk925337781/68 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/68 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:47:11 Listening on 192.168.0.1:8080 at 2018-12-20 18:47:11.508995353 -0800 PST m=+0.005627683 -2018/12/20 18:49:32 Accepted &{{0xc000146180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:51:35 Accepted &{{0xc00018a000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:51:35 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/68 -2018/12/20 18:51:35 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2018/12/20 18:51:35 removed [0xc0084f8680] -+ echo TEST /tmp/futk925337781/69 -TEST /tmp/futk925337781/69 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/69 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:52:53 Listening on 192.168.0.1:8080 at 2018-12-20 18:52:53.756505644 -0800 PST m=+0.004630321 -2018/12/20 18:55:15 Accepted &{{0xc00014e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:57:18 Accepted &{{0xc00014e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:57:18 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/69 -2018/12/20 18:57:18 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2018/12/20 18:57:18 removed [0xc008190b00] -+ echo TEST /tmp/futk925337781/70 -TEST /tmp/futk925337781/70 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/70 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:58:36 Listening on 192.168.0.1:8080 at 2018-12-20 18:58:36.431655716 -0800 PST m=+0.002397625 -2018/12/20 19:00:57 Accepted &{{0xc00014e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:03:00 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:03:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/70 -2018/12/20 19:03:00 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2018/12/20 19:03:00 removed [0xc008190400] -+ echo TEST /tmp/futk925337781/71 -TEST /tmp/futk925337781/71 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/71 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:04:18 Listening on 192.168.0.1:8080 at 2018-12-20 19:04:18.911352222 -0800 PST m=+0.004901757 -2018/12/20 19:06:39 Accepted &{{0xc000180000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:08:43 Accepted &{{0xc000166100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:08:43 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71 -2018/12/20 19:08:43 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2018/12/20 19:08:43 removed [0xc0084f8180] -+ echo TEST /tmp/futk925337781/72 -TEST /tmp/futk925337781/72 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/72 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:10:00 Listening on 192.168.0.1:8080 at 2018-12-20 19:10:00.965019013 -0800 PST m=+0.004917582 -2018/12/20 19:12:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:14:21 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:14:21 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/72 -2018/12/20 19:14:21 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2018/12/20 19:14:21 removed [0xc000025380] -+ echo TEST /tmp/futk925337781/73 -TEST /tmp/futk925337781/73 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/73 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:15:39 Listening on 192.168.0.1:8080 at 2018-12-20 19:15:39.027754537 -0800 PST m=+0.005721429 -2018/12/20 19:17:57 Accepted &{{0xc000166180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:19:58 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:19:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/73 -2018/12/20 19:19:58 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2018/12/20 19:19:59 removed [0xc000024800] -+ echo TEST /tmp/futk925337781/74 -TEST /tmp/futk925337781/74 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/74 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:21:16 Listening on 192.168.0.1:8080 at 2018-12-20 19:21:16.76222149 -0800 PST m=+0.002446848 -2018/12/20 19:23:35 Accepted &{{0xc000166000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:25:36 Accepted &{{0xc00014c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:25:36 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/74 -2018/12/20 19:25:36 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2018/12/20 19:25:36 removed [0xc008191500] -+ echo TEST /tmp/futk925337781/75 -TEST /tmp/futk925337781/75 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/75 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:26:54 Listening on 192.168.0.1:8080 at 2018-12-20 19:26:54.495710155 -0800 PST m=+0.004446478 -2018/12/20 19:29:13 Accepted &{{0xc00014a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:31:14 Accepted &{{0xc00014a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:31:14 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/75 -2018/12/20 19:31:14 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2018/12/20 19:31:14 removed [0xc000024780] -+ echo TEST /tmp/futk925337781/76 -TEST /tmp/futk925337781/76 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/76 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:32:32 Listening on 192.168.0.1:8080 at 2018-12-20 19:32:32.151543091 -0800 PST m=+0.004464779 -2018/12/20 19:34:50 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:36:52 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:36:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/76 -2018/12/20 19:36:52 Try to remove CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard (CEF68C66-06AB-4FB3-A3ED-5FFA885B5725) -2018/12/20 19:36:52 removed [0xc008190900] -+ echo TEST /tmp/futk925337781/77 -TEST /tmp/futk925337781/77 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/77 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:38:09 Listening on 192.168.0.1:8080 at 2018-12-20 19:38:09.788551728 -0800 PST m=+0.005509443 -2018/12/20 19:41:09 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 19:41:09.789007908 -0800 PST m=+180.005965453 -2018/12/20 19:41:09 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:41:09 We are now done ...................... -2018/12/20 19:41:09 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:41:09 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2018/12/20 19:41:09 removed [0xc0084f8480] -+ echo TEST /tmp/futk925337781/78 -TEST /tmp/futk925337781/78 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/78 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:42:27 Listening on 192.168.0.1:8080 at 2018-12-20 19:42:27.715166318 -0800 PST m=+0.005238798 -2018/12/20 19:44:21 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:45:57 Accepted &{{0xc00014e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:45:57 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78 -2018/12/20 19:45:57 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2018/12/20 19:45:57 removed [0xc000025780] -+ echo TEST /tmp/futk925337781/79 -TEST /tmp/futk925337781/79 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/79 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:47:14 Listening on 192.168.0.1:8080 at 2018-12-20 19:47:14.919859548 -0800 PST m=+0.005266410 -2018/12/20 19:49:09 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:50:45 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:50:45 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/79 -2018/12/20 19:50:45 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2018/12/20 19:50:45 removed [0xc008190380] -+ echo TEST /tmp/futk925337781/80 -TEST /tmp/futk925337781/80 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/80 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:52:02 Listening on 192.168.0.1:8080 at 2018-12-20 19:52:02.894600896 -0800 PST m=+0.004930883 -2018/12/20 19:53:56 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:55:33 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:55:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80 -2018/12/20 19:55:33 Try to remove 40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe (40BEAB40-CECE-4909-B133-20A413AE19E9) -2018/12/20 19:55:33 removed [0xc000024700] -+ echo TEST /tmp/futk925337781/81 -TEST /tmp/futk925337781/81 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/81 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:56:50 Listening on 192.168.0.1:8080 at 2018-12-20 19:56:50.572002523 -0800 PST m=+0.005085717 -2018/12/20 19:59:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 19:59:50.572501272 -0800 PST m=+180.005584263 -2018/12/20 19:59:50 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:59:50 We are now done ...................... -2018/12/20 19:59:50 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:59:50 Try to remove 76A7B4FC-C8D5-462D-A4D2-6E88338A772A:EFI_FV_FILETYPE_DRIVER:PlatformCpuPolicy (76A7B4FC-C8D5-462D-A4D2-6E88338A772A) -2018/12/20 19:59:50 removed [0xc000025480] -+ echo TEST /tmp/futk925337781/82 -TEST /tmp/futk925337781/82 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/82 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:01:07 Listening on 192.168.0.1:8080 at 2018-12-20 20:01:07.942057836 -0800 PST m=+0.005391989 -2018/12/20 20:04:07 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:04:07.942537723 -0800 PST m=+180.005871718 -2018/12/20 20:04:07 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:04:07 We are now done ...................... -2018/12/20 20:04:07 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:04:07 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2018/12/20 20:04:07 removed [0xc000025300] -+ echo TEST /tmp/futk925337781/83 -TEST /tmp/futk925337781/83 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/83 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:05:25 Listening on 192.168.0.1:8080 at 2018-12-20 20:05:25.340812113 -0800 PST m=+0.005316999 -2018/12/20 20:07:19 Accepted &{{0xc00013e180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:08:55 Accepted &{{0xc00013e280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:08:55 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83 -2018/12/20 20:08:55 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2018/12/20 20:08:55 removed [0xc0084f9380] -+ echo TEST /tmp/futk925337781/84 -TEST /tmp/futk925337781/84 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/84 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:10:12 Listening on 192.168.0.1:8080 at 2018-12-20 20:10:12.92855434 -0800 PST m=+0.005379744 -2018/12/20 20:12:02 Accepted &{{0xc000166080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:13:39 Accepted &{{0xc000166180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:13:39 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/84 -2018/12/20 20:13:39 Try to remove 56D60EE4-5CCF-485C-BBBB-FEDAE2B24146:EFI_FV_FILETYPE_DRIVER:RegAccessDxe (56D60EE4-5CCF-485C-BBBB-FEDAE2B24146) -2018/12/20 20:13:39 removed [0xc0084f8700] -+ echo TEST /tmp/futk925337781/85 -TEST /tmp/futk925337781/85 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/85 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:14:56 Listening on 192.168.0.1:8080 at 2018-12-20 20:14:56.481147437 -0800 PST m=+0.004919323 -2018/12/20 20:17:56 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:17:56.481601462 -0800 PST m=+180.005373158 -2018/12/20 20:17:56 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:17:56 We are now done ...................... -2018/12/20 20:17:56 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:17:56 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2018/12/20 20:17:56 removed [0xc000025800] -+ echo TEST /tmp/futk925337781/86 -TEST /tmp/futk925337781/86 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/86 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:19:14 Listening on 192.168.0.1:8080 at 2018-12-20 20:19:14.036470475 -0800 PST m=+0.005226324 -2018/12/20 20:21:07 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:22:43 Accepted &{{0xc000164080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:22:43 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86 -2018/12/20 20:22:43 Try to remove 79CA4208-BBA1-4A9A-8456-E1E66A81484E:EFI_FV_FILETYPE_DRIVER:Legacy8259 (79CA4208-BBA1-4A9A-8456-E1E66A81484E) -2018/12/20 20:22:43 removed [0xc000024680] -+ echo TEST /tmp/futk925337781/87 -TEST /tmp/futk925337781/87 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/87 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:24:00 Listening on 192.168.0.1:8080 at 2018-12-20 20:24:00.924543717 -0800 PST m=+0.005290866 -2018/12/20 20:27:00 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:27:00.925019656 -0800 PST m=+180.005766622 -2018/12/20 20:27:00 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:27:00 We are now done ...................... -2018/12/20 20:27:00 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:27:00 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2018/12/20 20:27:00 removed [0xc008190480] -+ echo TEST /tmp/futk925337781/88 -TEST /tmp/futk925337781/88 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/88 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:28:18 Listening on 192.168.0.1:8080 at 2018-12-20 20:28:18.251326435 -0800 PST m=+0.004860247 -2018/12/20 20:30:08 Accepted &{{0xc000138180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:31:44 Accepted &{{0xc000138280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:31:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88 -2018/12/20 20:31:44 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2018/12/20 20:31:44 removed [0xc000024c80] -+ echo TEST /tmp/futk925337781/89 -TEST /tmp/futk925337781/89 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/89 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:33:02 Listening on 192.168.0.1:8080 at 2018-12-20 20:33:02.283415483 -0800 PST m=+0.005258247 -2018/12/20 20:34:55 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:36:31 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:36:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/89 -2018/12/20 20:36:31 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2018/12/20 20:36:31 removed [0xc000024500] -+ echo TEST /tmp/futk925337781/90 -TEST /tmp/futk925337781/90 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/90 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:37:49 Listening on 192.168.0.1:8080 at 2018-12-20 20:37:49.134772319 -0800 PST m=+0.002789523 -2018/12/20 20:39:43 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:41:19 Accepted &{{0xc000146080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:41:19 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90 -2018/12/20 20:41:19 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2018/12/20 20:41:19 removed [0xc008190300] -+ echo TEST /tmp/futk925337781/91 -TEST /tmp/futk925337781/91 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/91 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:42:36 Listening on 192.168.0.1:8080 at 2018-12-20 20:42:36.724654358 -0800 PST m=+0.004763851 -2018/12/20 20:44:30 Accepted &{{0xc00015e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:46:06 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:46:06 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91 -2018/12/20 20:46:06 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2018/12/20 20:46:06 removed [0xc008191000] -+ echo TEST /tmp/futk925337781/92 -TEST /tmp/futk925337781/92 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/92 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:47:23 Listening on 192.168.0.1:8080 at 2018-12-20 20:47:23.579420321 -0800 PST m=+0.005093306 -2018/12/20 20:49:17 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:50:53 Accepted &{{0xc000150080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:50:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92 -2018/12/20 20:50:53 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2018/12/20 20:50:53 removed [0xc008191780] -+ echo TEST /tmp/futk925337781/93 -TEST /tmp/futk925337781/93 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/93 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:52:10 Listening on 192.168.0.1:8080 at 2018-12-20 20:52:10.354211095 -0800 PST m=+0.005311245 -2018/12/20 20:54:00 Accepted &{{0xc000164100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:55:36 Accepted &{{0xc000164200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:55:36 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/93 -2018/12/20 20:55:36 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2018/12/20 20:55:36 removed [0xc008190000] -+ echo TEST /tmp/futk925337781/94 -TEST /tmp/futk925337781/94 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/94 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:56:53 Listening on 192.168.0.1:8080 at 2018-12-20 20:56:53.613061296 -0800 PST m=+0.005014177 -2018/12/20 20:58:47 Accepted &{{0xc00014e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:00:23 Accepted &{{0xc00014e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:00:23 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94 -2018/12/20 21:00:23 Try to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 (D6207835-B7E3-4FF8-B276-CDE3E52206BC) -2018/12/20 21:00:23 removed [0xc008190180] -+ echo TEST /tmp/futk925337781/95 -TEST /tmp/futk925337781/95 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/95 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:01:40 Listening on 192.168.0.1:8080 at 2018-12-20 21:01:40.701053391 -0800 PST m=+0.004683518 -2018/12/20 21:03:34 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:05:10 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:05:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95 -2018/12/20 21:05:10 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2018/12/20 21:05:10 removed [0xc000025b80] -+ echo TEST /tmp/futk925337781/96 -TEST /tmp/futk925337781/96 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/96 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:06:27 Listening on 192.168.0.1:8080 at 2018-12-20 21:06:27.528188918 -0800 PST m=+0.005195378 -2018/12/20 21:08:21 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:09:57 Accepted &{{0xc000142100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:09:57 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96 -2018/12/20 21:09:57 Try to remove 2E6A521C-F697-402D-9774-98B2B7E140F3:EFI_FV_FILETYPE_DRIVER:PlatformType (2E6A521C-F697-402D-9774-98B2B7E140F3) -2018/12/20 21:09:57 removed [0xc000025680] -+ echo TEST /tmp/futk925337781/97 -TEST /tmp/futk925337781/97 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/97 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:11:14 Listening on 192.168.0.1:8080 at 2018-12-20 21:11:14.768610516 -0800 PST m=+0.005840572 -2018/12/20 21:14:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 21:14:14.769035167 -0800 PST m=+180.006265062 -2018/12/20 21:14:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:14:14 We are now done ...................... -2018/12/20 21:14:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:14:14 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2018/12/20 21:14:14 removed [0xc000024e80] -+ echo TEST /tmp/futk925337781/98 -TEST /tmp/futk925337781/98 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/98 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:15:32 Listening on 192.168.0.1:8080 at 2018-12-20 21:15:32.114669369 -0800 PST m=+0.004777217 -2018/12/20 21:17:25 Accepted &{{0xc000144100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:19:02 Accepted &{{0xc000144200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:19:02 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/98 -2018/12/20 21:19:02 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2018/12/20 21:19:02 removed [0xc000025600] -+ echo TEST /tmp/futk925337781/99 -TEST /tmp/futk925337781/99 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/99 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:20:19 Listening on 192.168.0.1:8080 at 2018-12-20 21:20:19.466768989 -0800 PST m=+0.004988781 -2018/12/20 21:22:13 Accepted &{{0xc00015a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:23:49 Accepted &{{0xc00015a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:23:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99 -2018/12/20 21:23:49 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2018/12/20 21:23:49 removed [0xc008190500] -+ echo TEST /tmp/futk925337781/100 -TEST /tmp/futk925337781/100 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/100 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:25:06 Listening on 192.168.0.1:8080 at 2018-12-20 21:25:06.333436059 -0800 PST m=+0.004846825 -2018/12/20 21:26:56 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:28:33 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:28:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100 -2018/12/20 21:28:33 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2018/12/20 21:28:33 removed [0xc000025d80] -+ echo TEST /tmp/futk925337781/101 -TEST /tmp/futk925337781/101 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/101 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:29:50 Listening on 192.168.0.1:8080 at 2018-12-20 21:29:50.189982224 -0800 PST m=+0.004673167 -2018/12/20 21:31:44 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:33:20 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:33:20 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101 -2018/12/20 21:33:20 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2018/12/20 21:33:20 removed [0xc008191700] -+ echo TEST /tmp/futk925337781/102 -TEST /tmp/futk925337781/102 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/102 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:34:37 Listening on 192.168.0.1:8080 at 2018-12-20 21:34:37.715295132 -0800 PST m=+0.005162615 -2018/12/20 21:36:31 Accepted &{{0xc000146080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:38:07 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:38:07 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102 -2018/12/20 21:38:07 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2018/12/20 21:38:07 removed [0xc008191680] -+ echo TEST /tmp/futk925337781/103 -TEST /tmp/futk925337781/103 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/103 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:39:24 Listening on 192.168.0.1:8080 at 2018-12-20 21:39:24.640238823 -0800 PST m=+0.005299504 -2018/12/20 21:41:18 Accepted &{{0xc000154080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:42:54 Accepted &{{0xc000154180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:42:54 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/103 -2018/12/20 21:42:54 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2018/12/20 21:42:54 removed [0xc000024380] -+ echo TEST /tmp/futk925337781/104 -TEST /tmp/futk925337781/104 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/104 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:44:11 Listening on 192.168.0.1:8080 at 2018-12-20 21:44:11.365626903 -0800 PST m=+0.004529410 -2018/12/20 21:46:05 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:47:41 Accepted &{{0xc000142080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:47:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/104 -2018/12/20 21:47:41 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2018/12/20 21:47:41 removed [0xc000025c00] -+ echo TEST /tmp/futk925337781/105 -TEST /tmp/futk925337781/105 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/105 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:48:58 Listening on 192.168.0.1:8080 at 2018-12-20 21:48:58.690742703 -0800 PST m=+0.004760520 -2018/12/20 21:50:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:52:28 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:52:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105 -2018/12/20 21:52:28 Try to remove 788DD6A1-F1EE-4BBA-A925-C0E7D66271BD:EFI_FV_FILETYPE_DRIVER:SystemBoardDxe (788DD6A1-F1EE-4BBA-A925-C0E7D66271BD) -2018/12/20 21:52:28 removed [0xc000025a00] -+ echo TEST /tmp/futk925337781/106 -TEST /tmp/futk925337781/106 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/106 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:53:45 Listening on 192.168.0.1:8080 at 2018-12-20 21:53:45.754837562 -0800 PST m=+0.005289240 -2018/12/20 21:56:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 21:56:45.755291306 -0800 PST m=+180.005742827 -2018/12/20 21:56:45 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:56:45 We are now done ...................... -2018/12/20 21:56:45 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:56:45 Try to remove 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer (90CB75DB-71FC-489D-AACF-943477EC7212) -2018/12/20 21:56:45 removed [0xc000024980] -+ echo TEST /tmp/futk925337781/107 -TEST /tmp/futk925337781/107 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/107 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:58:03 Listening on 192.168.0.1:8080 at 2018-12-20 21:58:03.298097231 -0800 PST m=+0.004954004 -2018/12/20 22:01:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:01:03.29856244 -0800 PST m=+180.005418999 -2018/12/20 22:01:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:01:03 We are now done ...................... -2018/12/20 22:01:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:01:03 Try to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup (DC92A37B-4AC5-4117-AABB-019FFC0FD06A) -2018/12/20 22:01:03 removed [0xc000025980] -+ echo TEST /tmp/futk925337781/108 -TEST /tmp/futk925337781/108 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/108 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:02:20 Listening on 192.168.0.1:8080 at 2018-12-20 22:02:20.257288701 -0800 PST m=+0.004764903 -2018/12/20 22:04:14 Accepted &{{0xc000140080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:05:49 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:05:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/108 -2018/12/20 22:05:49 Try to remove B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe (B601F8C4-43B7-4784-95B1-F4226CB40CEE) -2018/12/20 22:05:49 removed [0xc008190d80] -+ echo TEST /tmp/futk925337781/109 -TEST /tmp/futk925337781/109 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/109 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:07:06 Listening on 192.168.0.1:8080 at 2018-12-20 22:07:06.847850404 -0800 PST m=+0.005167920 -2018/12/20 22:10:06 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:10:06.848302351 -0800 PST m=+180.005619719 -2018/12/20 22:10:06 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:10:06 We are now done ...................... -2018/12/20 22:10:06 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:10:06 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2018/12/20 22:10:06 removed [0xc008190200] -+ echo TEST /tmp/futk925337781/110 -TEST /tmp/futk925337781/110 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/110 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:11:23 Listening on 192.168.0.1:8080 at 2018-12-20 22:11:23.961190693 -0800 PST m=+0.005224928 -2018/12/20 22:13:17 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:14:53 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:14:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110 -2018/12/20 22:14:53 Try to remove C1C418F9-591D-461C-82A2-B9CD96DFEA86:EFI_FV_FILETYPE_DRIVER:LegacyInterrupt (C1C418F9-591D-461C-82A2-B9CD96DFEA86) -2018/12/20 22:14:53 removed [0xc000024900] -+ echo TEST /tmp/futk925337781/111 -TEST /tmp/futk925337781/111 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/111 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:16:10 Listening on 192.168.0.1:8080 at 2018-12-20 22:16:10.861995689 -0800 PST m=+0.004932345 -2018/12/20 22:18:03 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:21:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:21:03.797324572 -0800 PST m=+292.940261077 -2018/12/20 22:21:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:21:03 We are now done ...................... -2018/12/20 22:21:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:21:03 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2018/12/20 22:21:03 removed [0xc008190100] -+ echo TEST /tmp/futk925337781/112 -TEST /tmp/futk925337781/112 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/112 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:22:20 Listening on 192.168.0.1:8080 at 2018-12-20 22:22:20.816990902 -0800 PST m=+0.005099742 -2018/12/20 22:24:14 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:25:50 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:25:50 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112 -2018/12/20 22:25:50 Try to remove A062CF1F-8473-4AA3-8793-600BC4FFE9A8:EFI_FV_FILETYPE_DRIVER:CsmDxe (A062CF1F-8473-4AA3-8793-600BC4FFE9A8) -2018/12/20 22:25:50 removed [0xc000025280] -+ echo TEST /tmp/futk925337781/113 -TEST /tmp/futk925337781/113 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/113 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:27:07 Listening on 192.168.0.1:8080 at 2018-12-20 22:27:07.652741885 -0800 PST m=+0.005140945 -2018/12/20 22:28:57 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:31:57 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:31:57.349093708 -0800 PST m=+289.701492554 -2018/12/20 22:31:57 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:31:57 We are now done ...................... -2018/12/20 22:31:57 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:31:57 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2018/12/20 22:31:57 removed [0xc008191a00] -+ echo TEST /tmp/futk925337781/114 -TEST /tmp/futk925337781/114 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/114 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:33:14 Listening on 192.168.0.1:8080 at 2018-12-20 22:33:14.943430764 -0800 PST m=+0.005762702 -2018/12/20 22:35:08 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:36:44 Accepted &{{0xc000158200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:36:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/114 -2018/12/20 22:36:44 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2018/12/20 22:36:44 removed [0xc008190700] -+ echo TEST /tmp/futk925337781/115 -TEST /tmp/futk925337781/115 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/115 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:38:01 Listening on 192.168.0.1:8080 at 2018-12-20 22:38:01.625109288 -0800 PST m=+0.004427742 -2018/12/20 22:39:55 Accepted &{{0xc000142080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:41:31 Accepted &{{0xc000196000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:41:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115 -2018/12/20 22:41:31 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2018/12/20 22:41:31 removed [0xc000025000] -+ echo TEST /tmp/futk925337781/116 -TEST /tmp/futk925337781/116 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/116 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:42:48 Listening on 192.168.0.1:8080 at 2018-12-20 22:42:48.916248401 -0800 PST m=+0.004366302 -2018/12/20 22:44:42 Accepted &{{0xc000140100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:46:18 Accepted &{{0xc000140200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:46:18 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116 -2018/12/20 22:46:18 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2018/12/20 22:46:18 removed [0xc000024600] -+ echo TEST /tmp/futk925337781/117 -TEST /tmp/futk925337781/117 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/117 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:47:35 Listening on 192.168.0.1:8080 at 2018-12-20 22:47:35.582221866 -0800 PST m=+0.004836803 -2018/12/20 22:49:25 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:51:01 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:51:01 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/117 -2018/12/20 22:51:01 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2018/12/20 22:51:01 removed [0xc008190780] -+ echo TEST /tmp/futk925337781/118 -TEST /tmp/futk925337781/118 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/118 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:52:18 Listening on 192.168.0.1:8080 at 2018-12-20 22:52:18.725295322 -0800 PST m=+0.005087849 -2018/12/20 22:54:12 Accepted &{{0xc000146100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:55:48 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:55:48 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118 -2018/12/20 22:55:48 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2018/12/20 22:55:48 removed [0xc000024c00] -+ echo TEST /tmp/futk925337781/119 -TEST /tmp/futk925337781/119 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/119 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:57:05 Listening on 192.168.0.1:8080 at 2018-12-20 22:57:05.963597055 -0800 PST m=+0.004854273 -2018/12/20 22:58:59 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:00:35 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:00:35 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/119 -2018/12/20 23:00:35 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2018/12/20 23:00:35 removed [0xc008190080] -+ echo TEST /tmp/futk925337781/120 -TEST /tmp/futk925337781/120 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/120 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:01:52 Listening on 192.168.0.1:8080 at 2018-12-20 23:01:52.499126546 -0800 PST m=+0.002942545 -2018/12/20 23:03:46 Accepted &{{0xc00013a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:05:22 Accepted &{{0xc000140100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:05:22 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120 -2018/12/20 23:05:22 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2018/12/20 23:05:22 removed [0xc008191600] -+ echo TEST /tmp/futk925337781/121 -TEST /tmp/futk925337781/121 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/121 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:06:39 Listening on 192.168.0.1:8080 at 2018-12-20 23:06:39.391761255 -0800 PST m=+0.004991323 -2018/12/20 23:08:33 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:10:08 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:10:08 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/121 -2018/12/20 23:10:08 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2018/12/20 23:10:08 removed [0xc008190a00] -+ echo TEST /tmp/futk925337781/122 -TEST /tmp/futk925337781/122 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/122 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:11:25 Listening on 192.168.0.1:8080 at 2018-12-20 23:11:25.846974946 -0800 PST m=+0.005090289 -2018/12/20 23:13:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:14:55 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:14:55 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122 -2018/12/20 23:14:55 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2018/12/20 23:14:55 removed [0xc008190600] -+ echo TEST /tmp/futk925337781/123 -TEST /tmp/futk925337781/123 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/123 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:16:12 Listening on 192.168.0.1:8080 at 2018-12-20 23:16:12.096148547 -0800 PST m=+0.005148276 -2018/12/20 23:18:05 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:19:41 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:19:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123 -2018/12/20 23:19:41 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2018/12/20 23:19:41 removed [0xc008191180] -+ echo TEST /tmp/futk925337781/124 -TEST /tmp/futk925337781/124 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/124 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:20:58 Listening on 192.168.0.1:8080 at 2018-12-20 23:20:58.284506368 -0800 PST m=+0.004793942 -2018/12/20 23:22:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:24:28 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:24:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/124 -2018/12/20 23:24:28 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2018/12/20 23:24:28 removed [0xc0084f8980] -+ echo TEST /tmp/futk925337781/125 -TEST /tmp/futk925337781/125 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/125 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:25:44 Listening on 192.168.0.1:8080 at 2018-12-20 23:25:44.854032771 -0800 PST m=+0.005205096 -2018/12/20 23:27:38 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:29:14 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:29:14 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/125 -2018/12/20 23:29:14 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2018/12/20 23:29:14 removed [0xc000024a80] -+ echo TEST /tmp/futk925337781/126 -TEST /tmp/futk925337781/126 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/126 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:30:31 Listening on 192.168.0.1:8080 at 2018-12-20 23:30:31.183744468 -0800 PST m=+0.005385213 -2018/12/20 23:32:24 Accepted &{{0xc000150100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:34:00 Accepted &{{0xc000150200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:34:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/126 -2018/12/20 23:34:00 Try to remove 62D171CB-78CD-4480-8678-C6A2A797A8DE:EFI_FV_FILETYPE_DRIVER:CpuArchDxe (62D171CB-78CD-4480-8678-C6A2A797A8DE) -2018/12/20 23:34:00 removed [0xc000024580] -+ echo TEST /tmp/futk925337781/127 -TEST /tmp/futk925337781/127 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/127 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:35:17 Listening on 192.168.0.1:8080 at 2018-12-20 23:35:17.59639142 -0800 PST m=+0.005489228 -2018/12/20 23:38:17 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 23:38:17.596917075 -0800 PST m=+180.006014652 -2018/12/20 23:38:17 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:38:17 We are now done ...................... -2018/12/20 23:38:17 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:38:17 Try to remove CBC59C4A-383A-41EB-A8EE-4498AEA567E4:EFI_FV_FILETYPE_DRIVER:FlashDriver (CBC59C4A-383A-41EB-A8EE-4498AEA567E4) -2018/12/20 23:38:17 removed [0xc0084f8280] -+ echo TEST /tmp/futk925337781/128 -TEST /tmp/futk925337781/128 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/128 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:39:34 Listening on 192.168.0.1:8080 at 2018-12-20 23:39:34.420211304 -0800 PST m=+0.005312749 -2018/12/20 23:42:34 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 23:42:34.420688673 -0800 PST m=+180.005789950 -2018/12/20 23:42:34 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:42:34 We are now done ...................... -2018/12/20 23:42:34 accept tcp 192.168.0.1:8080: i/o timeout -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk925337781/ -[?2004l128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l !$ -[?2004lls -l /tmp/futk925337781/ -total 32768 --rw-r--r-- 1 rminnich primarygroup 33554432 Dec 20 23:38 128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 fail.bin linux removeBMCcrap.bin RUN3 x.bin -bin.reset DIT futk.remove.99 LIST removemorecrap.bin RUN4 xxx -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma LOG removesetupcrap.bin RUN4.4.rom yyy -commentmorecrap.bin DXECLEANER ipmisucks.bin Makefile removesomecrap.bin tyan7102.bin -commentsetupcrap.bin EATIT L NOTES rom211.rom uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mroe Makefile -[?2004lbash: mroe: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u --root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/c -mds/elvish github.com/u-root/u-root/cmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ echo *128* -[?2004l*128* -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp tmp/fucp /tmp/futk925337781/128 futk.ls -l /tmp/futk925337781/ -[?2004ltotal 32768 --rw-r--r-- 1 rminnich primarygroup 33554432 Dec 20 23:38 128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/ -0_motd_lastrun futk925337781/ -bad Grammar__py_binary_resource_gagent__qaVS9l.pickle -cacert__py_binary_resource_gagent__WVJMJH.pem .ICE-unix/ -cacerts__py_binary_resource_goobuntu-bridge-server__0cFwbz.txt initgoogle_syslog_dir.120/ -cacerts__py_binary_resource_goobuntu-bridge-server__BRBH19.txt initgoogle_syslog_dir.65534/ -cacerts__py_binary_resource_goobuntu-bridge-server__kzdZ03.txt initramfs.linux_amd64.cpio -cacerts__py_binary_resource_goobuntu-bridge-server___LaR15.txt libcapstone__py_binary_resource_gagent__HpHB0Q.so -cacerts__py_binary_resource_goobuntu-bridge-server__mnqRnb.txt ns.rminnich.:0/ -cacerts__py_binary_resource_goobuntu-bridge-server__ONKyLI.txt PatternGrammar__py_binary_resource_gagent__x6BiZ6.pickle -cacerts__py_binary_resource_goobuntu-bridge-server__R9ZskZ.txt ssh-bllrPgoTRFh5/ -cacerts__py_binary_resource_goobuntu-bridge-server__xvu6eS.txt swapcheck_record_156049 -cacerts__py_binary_resource_goobuntu-bridge-server__zJQzMh.txt tmpAVIbld__unpar__.runfiles/ -.com.google.Chrome.aE4Nzc/ tmplql2t9d_/ -.com.google.Chrome.qSI7TY/ tmpm1q2cyn4/ -.com.google.Chrome.sCGM9z/ tmp_m2klrxx/ -.com.google.Chrome.svwoCa/ tmux-156049/ -env.boot.1544790141.286376.174830.d/ .X0-lock -env.boot.1545057395.563833.8971.d/ .X11-unix/ -env.boot.1545224367.436330.68006.d/ .XIM-unix/ -env.boot.1545300877.259088.21394.d/ xxx -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/futk925337781/128 rom.futk /tmpfu/futk925337781/128 fv -[?2004l2019/01/03 11:26:28 Found 211 things -[211]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls *211* -[?2004lrom211.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cmp rom211.rom /tm/fp/futk925337781/128 rom128 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ rm /tmpfu/futk925337781/*-/tmp/futk925337781r/tmp/futk925337781f/tmp/futk925337781 /tmp/futk925337781 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls idls ~/.ssh -[?2004lagent-stuff.xcpu.mtv.corp.google.com config~ github id_rsa_corp-old.pub jkhh5.pub -agent.xcpu.mtv.corp.google.com console_rsa git.pub id_rsa_corp.pub jkhh5root.pub -authorized_keys console_rsa.pub google_compute_engine id_rsa_google-cert.pub john -authorized_keys2 devlabs_id_rsa google_compute_engine.pub id_rsa_google-old-cert.pub known_hosts -backup-20170411-104708 devlabs_id_rsa.pub google_compute_known_hosts id_rsa_google-old.pub localjkhh5.pub -chromium dropbear_rsa id_rsa id_rsa_google.pub sk-passwords -chromium.pub dropbear_rsa.pub id_rsa_corp-cert.pub id_rsa.pub skynet -config git id_rsa_corp-old-cert.pub jkhh34.pub skynet.pub -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9669C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/uu-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/ccmds/elvish github.com/u-root/u-root/cmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h [?25l1,1Top[?25h[?25l/[?2004h[?25h-[?25l[?25hr[?25l[?25h [?25l23,35-42 Top[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25h-[?25l[?25hr[?25l[?25h/[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l [?25h/[?25l[?25h=[?25l[?25h-[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h-[?25l[?25hr[?25l[?25h/[?25l[?25hp[?25l[?25h [?25lPattern not found: -r23,35-42 Top[?25h[?25l:[?2004h[?25he[?25l[?25h[?25l [?25hD[?25l[?25hX[?25l[?25h...[?25lECLEANER[?25h [?25l"DXECLEANER" 17L, 361C#!/bin/bashset -e -set -x -echo TEST $1echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -recho "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l0[?25h[?25l]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER9 [?25h[?25l-- INSERT --16,10All[?25h[?25lm1[?25h[?25lo2[?25h[?25ld3[?25h[?25le4[?25h[?25l5[?25h[?25lt6[?25h[?25le7[?25h[?25ls8[?25h[?25lt9[?25h[?25le20[?25h[?25lr1[?25h[?25l16,20All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 371C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9669C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/uu-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/ccmds/elvish github.com/u-root/u-root/cmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l3[?25h[?25l335-342[?25h[?25l0-337[?25h[?25l29-336[?25h[?25l5-332[?25h[?25l4-331[?25h[?25l0-327[?25h[?25l19-326[?25h[?25l8-325[?25h[?25l7-324[?25h[?25l3-320[?25h[?25l2-319[?25h[?25l1-318[?25h[?25l2-319[?25h[?25l3-320[?25h[?25l7-324[?25h[?25l8-325[?25h[?25l9-326[?25h[?25l20-327[?25h[?25l1-328[?25h[?25l2-329[?25h[?25l3-330[?25h[?25l4-331[?25h[?25l5-332[?25h[?25l-- INSERT --23,325-332 Top[?25h[?25lxcmds/sshd6-333]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l23,325-332 Top[?25h[?25l36-343[?25h[?25l-- INSERT --23,337-344 Top[?25h[?25l8-345[?25h[?25li9-346[?25h[?25ld40-347[?25h[?25l_1-348[?25h[?25lr2-349[?25h[?25ls3-350[?25h[?25la4-351[?25h[?25l.5-352[?25h[?25lp6-353[?25h[?25lu7-354[?25h[?25lb8-355[?25h[?25l23,347-354 Top[?25h[?25l1 change; before #2 8 seconds ago23,336-343 Top[?25h[?25l1-338[?25h[?25l0-337[?25h[?25l25-332[?25h[?25l4-331[?25h[?25l0-327[?25h[?25l19-326[?25h[?25l8-325[?25h[?25l7-324[?25h[?25l3-320[?25h[?25l2-319[?25h[?25l1-318[?25h[?25l0-317[?25h[?25l07-314[?25h[?25l6-313[?25h[?25l0-307[?25h[?25l290-29[?25h[?25l89-296[?25h[?25l5-292[?25h[?25l4-291[?25h[?25l0-287[?25h[?25l79-286[?25h[?25l8-285[?25h[?25l7-284[?25h[?25l3-280[?25h[?25l2-279[?25h[?25l1-278[?25h[?25l0-277[?25h[?25l67-274[?25h[?25l6-273[?25h[?25l0-267[?25h[?25l55-262[?25h[?25l4-261[?25h[?25l0-257[?25h[?25l49-256[?25h[?25l1-8 [?25h[?25l2-9[?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)uu-ccm7-24[?25h[?25l(GOPATH)uu-ccm9-26[?25h[?25l22-29[?25h[?25l3-30[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l7-54[?25h[?25l8-55[?25h[?25l9-56[?25h[?25l50-57[?25h[?25l4-61[?25h[?25l5-62[?25h[?25l8-65[?25h[?25l9-66[?25h[?25l64-71[?25h[?25l5-72[?25h[?25l8-75[?25h[?25l9-76[?25h[?25l75-82[?25h[?25l6-83[?25h[?25l5-82[?25h[?25lusr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u--root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lsr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rroot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmdds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmdss/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lbin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-roott/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/eelvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd [?25h[?25ln/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd [?25h[?25lsshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd [?25h[?25lshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd [?25h[?25lhfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25lfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25ls github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25l github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l-- INSERT --23,75-82 Top[?25h[?25li github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd6-83[?25h[?25ld github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd7-84[?25h[?25l_ github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd8-85[?25h[?25lr github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd9-86[?25h[?25ls github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd80-87[?25h[?25la github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd1-88[?25h[?25l. github.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd2-89[?25h[?25lp github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd3-90[?25h[?25lu github.com/linuxboot/dut/uinit github.com/u-root/u-roott/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/eelvish github.com/u-root/u-root/xcmds/sshd4-91[?25h[?25lb github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshd5-92[?25h[?25l23,84-91 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9666C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l idcp ~/.ssh/id_rsa.pub . -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -2019/01/03 12:28:24 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 12:28:24 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 12:28:24 "github.com/u-root/u-root/xcmds/sshd" is neither package or path/glob: cannot find package "github.com/u-root/u-root/xcmds/sshd" in any of: - /usr/local/src/projects/nobinaryblobs/go1.6/src/github.com/u-root/u-root/xcmds/sshd (from $GOROOT) - /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/sshd (from $GOPATH) -exit status 1 -Makefile:21: recipe for target 'i' failed -make: *** [i] Error 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek i -[?2004lbash: maek: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek i -[?2004lbash: maek: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -# command-line-arguments -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go:151:13: undefined: templates -Makefile:21: recipe for target 'i' failed -make: *** [i] Error 2 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [13@v': vi Makefile[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9666C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hg[?25l[?25ho[?25l[?25h.[?25l[?25hr[?25l[?25hu[?25l[?25hn[?25l[?25h [?25l23,2-9Top[?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)oot//e7-24[?25h[?25l(GOPATH)oot//e9-26[?25h[?25l22-29[?25h[?25l3-30[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l6-33[?25h[?25l7-34[?25h[?25l8-35[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l1-38[?25h[?25l2-39[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l7-44[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l4-51[?25h[?25l5-52[?25h[?25l6-53[?25h[?25l7-54[?25h[?25lot.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd ]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9656C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -2019/01/03 12:46:52 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 12:46:52 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 12:47:00 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3027359 Jan 3 12:47 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o -ls KSYM .tmp_kallsyms2.o -rom LD vmlinux -* - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5337 kB -CRC 32331d5c -Kernel: arch/x86/boot/bzImage is ready (#79) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5480496 Jan 3 12:47 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls rom* -[?2004lrom211.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk rom211.rom fv bz linux/arch/x86/boot/bzImage splat xxx/tmp/xx.rom saverom -[?2004l2019/01/03 12:48:00 Found 211 things -[211 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[211 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER -[?2004l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r - echo "date" > /dev/ttyUSB1 - ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER futk rom211.rom fv linux/arch/x86/boot/bzImage splat /tmp/xx.rom saverom^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rminnich/bin/em100 -c W25Q256FV -s -d /tmp/xx.rom -r -[?2004l[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat DXECLEANER -[?2004l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ echo "./0" > /dev/ttyUSB1 - sleep 5 - echo "./1" > /dev/ttyUSB1 - sleep 10 -  -[?2004l' - - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ' -[?2004l[?2004h> -[?2004l[?2004h> -[?2004l[?2004h> ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d rom211.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -mode tester -flag provided but not defined: -mode -Usage of ./uinit: - -C configure the network (default true) - -d string - directory to serve (default ".") - -h string - hostname (default "192.168.0.1") - -m string - what mode to run in -- device, tester, or ssh starter (default "device") - -me string - dut hostname (default "192.168.0.2") - -p string - port number (default "8080") -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 17L, 371C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hm[?25l[?25ho[?25l[?25hd[?25l[?25he[?25l[?25h [?25l16,10All[?25h[?25l1[?25h[?25lde tester]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25le tester[?25h[?25l tester[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 368C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER  -98.splat EATIT LIST RUN3 -bin.reset fail.bin LOG RUN4 -blacklist futk.remove.99/ Makefile RUN4.4.rom -commentmorecrap.bin .gitignore NOTES tyan7102.bin -commentsetupcrap.bin id_rsa.pub removeBMCcrap.bin uinit -config-4.13.0-rc7 initramfs.linux_amd64.cpio.lzma removemorecrap.bin x.bin -DIT ipmisucks.bin removesetupcrap.bin xxx -dxeclean.bin L removesomecrap.bin yyy -DXECLEANER linux/ rom211.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER -98.splat EATIT LIST RUN3 -bin.reset fail.bin LOG RUN4 -blacklist futk.remove.99/ Makefile RUN4.4.rom -commentmorecrap.bin .gitignore NOTES tyan7102.bin -commentsetupcrap.bin id_rsa.pub removeBMCcrap.bin uinit -config-4.13.0-rc7 initramfs.linux_amd64.cpio.lzma removemorecrap.bin x.bin -DIT ipmisucks.bin removesetupcrap.bin xxx -dxeclean.bin L removesomecrap.bin yyy -DXECLEANER linux/ rom211.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%)  comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ ---More--(55%)  comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ ---More--(66%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d98 -[?2004lfutk 98.splat fv ./DXECLEANER clean -2019/01/03 13:03:22 Found 313 things -2019/01/03 13:03:22 script is ./DXECLEANER -2019/01/03 13:03:32 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 13:03:32 removed [0xc00ae98900] -+ echo TEST /tmp/futk077126222/1 -TEST /tmp/futk077126222/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk077126222/1 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:04:51 Listening on 192.168.0.1:8080 at 2019-01-03 13:04:51.512528012 -0800 PST m=+0.004948128 -dmesg -^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bg -[?2004l[1]+ make d98 & -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[2090413.478133] print_req_error: 54 callbacks suppressed -[2090413.478135] print_req_error: I/O error, dev loop1, sector 9494400 -[2090413.478373] print_req_error: I/O error, dev loop1, sector 9494616 -[2090413.478442] print_req_error: I/O error, dev loop1, sector 5300224 -[2090413.478494] print_req_error: I/O error, dev loop1, sector 5300232 -[2090413.526050] print_req_error: I/O error, dev loop1, sector 85888 -[2090413.526200] print_req_error: I/O error, dev loop1, sector 86000 -[2090413.526349] print_req_error: I/O error, dev loop1, sector 20480 -[2090413.526499] print_req_error: I/O error, dev loop1, sector 20488 -[2090413.536462] print_req_error: I/O error, dev loop1, sector 5300096 -[2090413.536624] print_req_error: I/O error, dev loop1, sector 5300208 -[2090471.511176] print_req_error: 54 callbacks suppressed -[2090471.511178] print_req_error: I/O error, dev loop1, sector 9494400 -[2090471.511308] print_req_error: I/O error, dev loop1, sector 9494616 -[2090471.511372] print_req_error: I/O error, dev loop1, sector 5300224 -[2090471.511433] print_req_error: I/O error, dev loop1, sector 5300232 -[2090471.570180] print_req_error: I/O error, dev loop1, sector 85888 -[2090471.570306] print_req_error: I/O error, dev loop1, sector 86000 -[2090471.570375] print_req_error: I/O error, dev loop1, sector 20480 -[2090471.570519] print_req_error: I/O error, dev loop1, sector 20488 -[2090471.580574] print_req_error: I/O error, dev loop1, sector 5300096 -[2090471.580714] print_req_error: I/O error, dev loop1, sector 5300208 -[2112010.827903] print_req_error: 54 callbacks suppressed -[2112010.827905] print_req_error: I/O error, dev loop1, sector 9494400 -[2112010.828155] print_req_error: I/O error, dev loop1, sector 9494616 -[2112010.828225] print_req_error: I/O error, dev loop1, sector 5300224 -[2112010.828288] print_req_error: I/O error, dev loop1, sector 5300232 -[2112011.119197] print_req_error: I/O error, dev loop1, sector 85888 -[2112011.119368] print_req_error: I/O error, dev loop1, sector 86000 -[2112011.119454] print_req_error: I/O error, dev loop1, sector 20480 -[2112011.119604] print_req_error: I/O error, dev loop1, sector 20488 -[2112011.163172] print_req_error: I/O error, dev loop1, sector 5300096 -[2112011.163329] print_req_error: I/O error, dev loop1, sector 5300208 -[2112069.211288] print_req_error: 54 callbacks suppressed -[2112069.211289] print_req_error: I/O error, dev loop1, sector 9494400 -[2112069.211367] print_req_error: I/O error, dev loop1, sector 9494616 -[2112069.211400] print_req_error: I/O error, dev loop1, sector 5300224 -[2112069.211426] print_req_error: I/O error, dev loop1, sector 5300232 -[2112069.262885] print_req_error: I/O error, dev loop1, sector 85888 -[2112069.263034] print_req_error: I/O error, dev loop1, sector 86000 -[2112069.263180] print_req_error: I/O error, dev loop1, sector 20480 -[2112069.263330] print_req_error: I/O error, dev loop1, sector 20488 -[2112069.306796] print_req_error: I/O error, dev loop1, sector 5300096 -[2112069.306935] print_req_error: I/O error, dev loop1, sector 5300208 -[2133613.290508] print_req_error: 54 callbacks suppressed -[2133613.290510] print_req_error: I/O error, dev loop1, sector 9494400 -[2133613.290642] print_req_error: I/O error, dev loop1, sector 9494616 -[2133613.290676] print_req_error: I/O error, dev loop1, sector 5300224 -[2133613.290747] print_req_error: I/O error, dev loop1, sector 5300232 -[2133613.327409] print_req_error: I/O error, dev loop1, sector 85888 -[2133613.327483] print_req_error: I/O error, dev loop1, sector 86000 -[2133613.327532] print_req_error: I/O error, dev loop1, sector 20480 -[2133613.327600] print_req_error: I/O error, dev loop1, sector 20488 -[2133613.371295] print_req_error: I/O error, dev loop1, sector 5300096 -[2133613.371367] print_req_error: I/O error, dev loop1, sector 5300208 -[2133673.078115] print_req_error: 54 callbacks suppressed -[2133673.078117] print_req_error: I/O error, dev loop1, sector 9494400 -[2133673.078223] print_req_error: I/O error, dev loop1, sector 9494616 -[2133673.078280] print_req_error: I/O error, dev loop1, sector 5300224 -[2133673.078368] print_req_error: I/O error, dev loop1, sector 5300232 -[2133673.138524] print_req_error: I/O error, dev loop1, sector 85888 -[2133673.138692] print_req_error: I/O error, dev loop1, sector 86000 -[2133673.138846] print_req_error: I/O error, dev loop1, sector 20480 -[2133673.138999] print_req_error: I/O error, dev loop1, sector 20488 -[2133673.148904] print_req_error: I/O error, dev loop1, sector 5300096 -[2133673.149054] print_req_error: I/O error, dev loop1, sector 5300208 -[2155214.716211] print_req_error: 54 callbacks suppressed -[2155214.716213] print_req_error: I/O error, dev loop1, sector 9494400 -[2155214.716403] print_req_error: I/O error, dev loop1, sector 9494616 -[2155214.716465] print_req_error: I/O error, dev loop1, sector 5300224 -[2155214.716592] print_req_error: I/O error, dev loop1, sector 5300232 -[2155214.762579] print_req_error: I/O error, dev loop1, sector 85888 -[2155214.762732] print_req_error: I/O error, dev loop1, sector 86000 -[2155214.762819] print_req_error: I/O error, dev loop1, sector 20480 -[2155214.762915] print_req_error: I/O error, dev loop1, sector 20488 -[2155214.773346] print_req_error: I/O error, dev loop1, sector 5300096 -[2155214.773506] print_req_error: I/O error, dev loop1, sector 5300208 -[2155274.789779] print_req_error: 54 callbacks suppressed -[2155274.789781] print_req_error: I/O error, dev loop1, sector 9494400 -[2155274.789932] print_req_error: I/O error, dev loop1, sector 9494616 -[2155274.789990] print_req_error: I/O error, dev loop1, sector 5300224 -[2155274.790081] print_req_error: I/O error, dev loop1, sector 5300232 -[2155274.840226] print_req_error: I/O error, dev loop1, sector 85888 -[2155274.840384] print_req_error: I/O error, dev loop1, sector 86000 -[2155274.840474] print_req_error: I/O error, dev loop1, sector 20480 -[2155274.840615] print_req_error: I/O error, dev loop1, sector 20488 -[2155274.884080] print_req_error: I/O error, dev loop1, sector 5300096 -[2155274.884235] print_req_error: I/O error, dev loop1, sector 5300208 -[2176814.216805] print_req_error: 54 callbacks suppressed -[2176814.216807] print_req_error: I/O error, dev loop1, sector 9494400 -[2176814.217000] print_req_error: I/O error, dev loop1, sector 9494616 -[2176814.217072] print_req_error: I/O error, dev loop1, sector 5300224 -[2176814.217118] print_req_error: I/O error, dev loop1, sector 5300232 -[2176814.262798] print_req_error: I/O error, dev loop1, sector 85888 -[2176814.262945] print_req_error: I/O error, dev loop1, sector 86000 -[2176814.263087] print_req_error: I/O error, dev loop1, sector 20480 -[2176814.263175] print_req_error: I/O error, dev loop1, sector 20488 -[2176814.273059] print_req_error: I/O error, dev loop1, sector 5300096 -[2176814.273181] print_req_error: I/O error, dev loop1, sector 5300208 -[2176871.285406] print_req_error: 54 callbacks suppressed -[2176871.285407] print_req_error: I/O error, dev loop1, sector 9494400 -[2176871.285490] print_req_error: I/O error, dev loop1, sector 9494616 -[2176871.285523] print_req_error: I/O error, dev loop1, sector 5300224 -[2176871.285589] print_req_error: I/O error, dev loop1, sector 5300232 -[2176871.350776] print_req_error: I/O error, dev loop1, sector 85888 -[2176871.350863] print_req_error: I/O error, dev loop1, sector 86000 -[2176871.350930] print_req_error: I/O error, dev loop1, sector 20480 -[2176871.350997] print_req_error: I/O error, dev loop1, sector 20488 -[2176871.394953] print_req_error: I/O error, dev loop1, sector 5300096 -[2176871.395062] print_req_error: I/O error, dev loop1, sector 5300208 -[2198410.216834] print_req_error: 54 callbacks suppressed -[2198410.216836] print_req_error: I/O error, dev loop1, sector 9494400 -[2198410.217043] print_req_error: I/O error, dev loop1, sector 9494616 -[2198410.217109] print_req_error: I/O error, dev loop1, sector 5300224 -[2198410.217221] print_req_error: I/O error, dev loop1, sector 5300232 -[2198410.265514] print_req_error: I/O error, dev loop1, sector 85888 -[2198410.265662] print_req_error: I/O error, dev loop1, sector 86000 -[2198410.265803] print_req_error: I/O error, dev loop1, sector 20480 -[2198410.265962] print_req_error: I/O error, dev loop1, sector 20488 -[2198410.275651] print_req_error: I/O error, dev loop1, sector 5300096 -[2198410.275805] print_req_error: I/O error, dev loop1, sector 5300208 -[2198467.955698] print_req_error: 54 callbacks suppressed -[2198467.955700] print_req_error: I/O error, dev loop1, sector 9494400 -[2198467.955818] print_req_error: I/O error, dev loop1, sector 9494616 -[2198467.955881] print_req_error: I/O error, dev loop1, sector 5300224 -[2198467.956008] print_req_error: I/O error, dev loop1, sector 5300232 -[2198467.998405] print_req_error: I/O error, dev loop1, sector 85888 -[2198467.998555] print_req_error: I/O error, dev loop1, sector 86000 -[2198467.998681] print_req_error: I/O error, dev loop1, sector 20480 -[2198467.998824] print_req_error: I/O error, dev loop1, sector 20488 -[2198468.008641] print_req_error: I/O error, dev loop1, sector 5300096 -[2198468.008772] print_req_error: I/O error, dev loop1, sector 5300208 -[2220008.530143] print_req_error: 54 callbacks suppressed -[2220008.530145] print_req_error: I/O error, dev loop1, sector 9494400 -[2220008.530379] print_req_error: I/O error, dev loop1, sector 9494616 -[2220008.530446] print_req_error: I/O error, dev loop1, sector 5300224 -[2220008.530544] print_req_error: I/O error, dev loop1, sector 5300232 -[2220008.575136] print_req_error: I/O error, dev loop1, sector 85888 -[2220008.575302] print_req_error: I/O error, dev loop1, sector 86000 -[2220008.575382] print_req_error: I/O error, dev loop1, sector 20480 -[2220008.575538] print_req_error: I/O error, dev loop1, sector 20488 -[2220008.618923] print_req_error: I/O error, dev loop1, sector 5300096 -[2220008.619082] print_req_error: I/O error, dev loop1, sector 5300208 -[2220068.189294] print_req_error: 54 callbacks suppressed -[2220068.189296] print_req_error: I/O error, dev loop1, sector 9494400 -[2220068.189432] print_req_error: I/O error, dev loop1, sector 9494616 -[2220068.189501] print_req_error: I/O error, dev loop1, sector 5300224 -[2220068.189597] print_req_error: I/O error, dev loop1, sector 5300232 -[2220068.191523] print_req_error: I/O error, dev loop1, sector 85888 -[2220068.191614] print_req_error: I/O error, dev loop1, sector 86000 -[2220068.191712] print_req_error: I/O error, dev loop1, sector 20480 -[2220068.191792] print_req_error: I/O error, dev loop1, sector 20488 -[2220068.206998] print_req_error: I/O error, dev loop1, sector 5300096 -[2220068.207121] print_req_error: I/O error, dev loop1, sector 5300208 -[2241610.122690] print_req_error: 54 callbacks suppressed -[2241610.122691] print_req_error: I/O error, dev loop1, sector 9494400 -[2241610.122911] print_req_error: I/O error, dev loop1, sector 9494616 -[2241610.123023] print_req_error: I/O error, dev loop1, sector 5300224 -[2241610.123164] print_req_error: I/O error, dev loop1, sector 5300232 -[2241610.163946] print_req_error: I/O error, dev loop1, sector 85888 -[2241610.164097] print_req_error: I/O error, dev loop1, sector 86000 -[2241610.164252] print_req_error: I/O error, dev loop1, sector 20480 -[2241610.164399] print_req_error: I/O error, dev loop1, sector 20488 -[2241610.174298] print_req_error: I/O error, dev loop1, sector 5300096 -[2241610.174438] print_req_error: I/O error, dev loop1, sector 5300208 -[2241667.816991] print_req_error: 54 callbacks suppressed -[2241667.816992] print_req_error: I/O error, dev loop1, sector 9494400 -[2241667.817107] print_req_error: I/O error, dev loop1, sector 9494616 -[2241667.817168] print_req_error: I/O error, dev loop1, sector 5300224 -[2241667.817293] print_req_error: I/O error, dev loop1, sector 5300232 -[2241667.834639] print_req_error: I/O error, dev loop1, sector 85888 -[2241667.834714] print_req_error: I/O error, dev loop1, sector 86000 -[2241667.834777] print_req_error: I/O error, dev loop1, sector 20480 -[2241667.834829] print_req_error: I/O error, dev loop1, sector 20488 -[2241667.840304] print_req_error: I/O error, dev loop1, sector 5300096 -[2241667.840445] print_req_error: I/O error, dev loop1, sector 5300208 -[2263211.023405] print_req_error: 54 callbacks suppressed -[2263211.023407] print_req_error: I/O error, dev loop1, sector 9494400 -[2263211.023630] print_req_error: I/O error, dev loop1, sector 9494616 -[2263211.023690] print_req_error: I/O error, dev loop1, sector 5300224 -[2263211.023781] print_req_error: I/O error, dev loop1, sector 5300232 -[2263211.068997] print_req_error: I/O error, dev loop1, sector 85888 -[2263211.069093] print_req_error: I/O error, dev loop1, sector 86000 -[2263211.069188] print_req_error: I/O error, dev loop1, sector 20480 -[2263211.069250] print_req_error: I/O error, dev loop1, sector 20488 -[2263211.079662] print_req_error: I/O error, dev loop1, sector 5300096 -[2263211.079824] print_req_error: I/O error, dev loop1, sector 5300208 -[2263273.419934] print_req_error: 54 callbacks suppressed -[2263273.419935] print_req_error: I/O error, dev loop1, sector 9494400 -[2263273.420013] print_req_error: I/O error, dev loop1, sector 9494616 -[2263273.420046] print_req_error: I/O error, dev loop1, sector 5300224 -[2263273.420077] print_req_error: I/O error, dev loop1, sector 5300232 -[2263273.457260] print_req_error: I/O error, dev loop1, sector 85888 -[2263273.457415] print_req_error: I/O error, dev loop1, sector 86000 -[2263273.457554] print_req_error: I/O error, dev loop1, sector 20480 -[2263273.457698] print_req_error: I/O error, dev loop1, sector 20488 -[2263273.467665] print_req_error: I/O error, dev loop1, sector 5300096 -[2263273.467828] print_req_error: I/O error, dev loop1, sector 5300208 -[2284812.645887] print_req_error: 54 callbacks suppressed -[2284812.645888] print_req_error: I/O error, dev loop1, sector 9494400 -[2284812.646092] print_req_error: I/O error, dev loop1, sector 9494616 -[2284812.646153] print_req_error: I/O error, dev loop1, sector 5300224 -[2284812.646282] print_req_error: I/O error, dev loop1, sector 5300232 -[2284812.693987] print_req_error: I/O error, dev loop1, sector 85888 -[2284812.694131] print_req_error: I/O error, dev loop1, sector 86000 -[2284812.694209] print_req_error: I/O error, dev loop1, sector 20480 -[2284812.694338] print_req_error: I/O error, dev loop1, sector 20488 -[2284812.704225] print_req_error: I/O error, dev loop1, sector 5300096 -[2284812.704376] print_req_error: I/O error, dev loop1, sector 5300208 -[2284870.918182] print_req_error: 54 callbacks suppressed -[2284870.918184] print_req_error: I/O error, dev loop1, sector 9494400 -[2284870.918315] print_req_error: I/O error, dev loop1, sector 9494616 -[2284870.918374] print_req_error: I/O error, dev loop1, sector 5300224 -[2284870.918498] print_req_error: I/O error, dev loop1, sector 5300232 -[2284870.982223] print_req_error: I/O error, dev loop1, sector 85888 -[2284870.982373] print_req_error: I/O error, dev loop1, sector 86000 -[2284870.982481] print_req_error: I/O error, dev loop1, sector 20480 -[2284870.982550] print_req_error: I/O error, dev loop1, sector 20488 -[2284870.992423] print_req_error: I/O error, dev loop1, sector 5300096 -[2284870.992562] print_req_error: I/O error, dev loop1, sector 5300208 -[2306295.202505] print_req_error: 54 callbacks suppressed -[2306295.202507] print_req_error: I/O error, dev loop1, sector 9494400 -[2306295.202726] print_req_error: I/O error, dev loop1, sector 9494616 -[2306295.202797] print_req_error: I/O error, dev loop1, sector 5300224 -[2306295.202935] print_req_error: I/O error, dev loop1, sector 5300232 -[2306295.260881] print_req_error: I/O error, dev loop1, sector 85888 -[2306295.261025] print_req_error: I/O error, dev loop1, sector 86000 -[2306295.261164] print_req_error: I/O error, dev loop1, sector 20480 -[2306295.261304] print_req_error: I/O error, dev loop1, sector 20488 -[2306295.271478] print_req_error: I/O error, dev loop1, sector 5300096 -[2306295.271653] print_req_error: I/O error, dev loop1, sector 5300208 -[2306359.775188] print_req_error: 54 callbacks suppressed -[2306359.775190] print_req_error: I/O error, dev loop1, sector 9494400 -[2306359.775324] print_req_error: I/O error, dev loop1, sector 9494616 -[2306359.775383] print_req_error: I/O error, dev loop1, sector 5300224 -[2306359.775507] print_req_error: I/O error, dev loop1, sector 5300232 -[2306360.300717] print_req_error: I/O error, dev loop1, sector 85888 -[2306360.300895] print_req_error: I/O error, dev loop1, sector 86000 -[2306360.300979] print_req_error: I/O error, dev loop1, sector 20480 -[2306360.301048] print_req_error: I/O error, dev loop1, sector 20488 -[2306360.414414] print_req_error: I/O error, dev loop1, sector 5300096 -[2306360.414576] print_req_error: I/O error, dev loop1, sector 5300208 -[2326444.973753] print_req_error: 54 callbacks suppressed -[2326444.973755] print_req_error: I/O error, dev loop1, sector 9494400 -[2326444.973985] print_req_error: I/O error, dev loop1, sector 9494616 -[2326444.974048] print_req_error: I/O error, dev loop1, sector 5300224 -[2326444.974141] print_req_error: I/O error, dev loop1, sector 5300232 -[2326445.023289] print_req_error: I/O error, dev loop1, sector 85888 -[2326445.023437] print_req_error: I/O error, dev loop1, sector 86000 -[2326445.023582] print_req_error: I/O error, dev loop1, sector 20480 -[2326445.023730] print_req_error: I/O error, dev loop1, sector 20488 -[2326445.033675] print_req_error: I/O error, dev loop1, sector 5300096 -[2326445.033835] print_req_error: I/O error, dev loop1, sector 5300208 -[2326503.689529] print_req_error: 54 callbacks suppressed -[2326503.689531] print_req_error: I/O error, dev loop1, sector 9494400 -[2326503.689617] print_req_error: I/O error, dev loop1, sector 9494616 -[2326503.689650] print_req_error: I/O error, dev loop1, sector 5300224 -[2326503.689724] print_req_error: I/O error, dev loop1, sector 5300232 -[2326503.733569] print_req_error: I/O error, dev loop1, sector 85888 -[2326503.733658] print_req_error: I/O error, dev loop1, sector 86000 -[2326503.733691] print_req_error: I/O error, dev loop1, sector 20480 -[2326503.733762] print_req_error: I/O error, dev loop1, sector 20488 -[2326503.777500] print_req_error: I/O error, dev loop1, sector 5300096 -[2326503.777581] print_req_error: I/O error, dev loop1, sector 5300208 -[2348048.088540] print_req_error: 54 callbacks suppressed -[2348048.088542] print_req_error: I/O error, dev loop1, sector 9494400 -[2348048.088748] print_req_error: I/O error, dev loop1, sector 9494616 -[2348048.088817] print_req_error: I/O error, dev loop1, sector 5300224 -[2348048.088912] print_req_error: I/O error, dev loop1, sector 5300232 -[2348048.153775] print_req_error: I/O error, dev loop1, sector 85888 -[2348048.153921] print_req_error: I/O error, dev loop1, sector 86000 -[2348048.154021] print_req_error: I/O error, dev loop1, sector 20480 -[2348048.154118] print_req_error: I/O error, dev loop1, sector 20488 -[2348048.164476] print_req_error: I/O error, dev loop1, sector 5300096 -[2348048.164622] print_req_error: I/O error, dev loop1, sector 5300208 -[2348106.031526] print_req_error: 54 callbacks suppressed -[2348106.031527] print_req_error: I/O error, dev loop1, sector 9494400 -[2348106.031651] print_req_error: I/O error, dev loop1, sector 9494616 -[2348106.031711] print_req_error: I/O error, dev loop1, sector 5300224 -[2348106.031803] print_req_error: I/O error, dev loop1, sector 5300232 -[2348106.064496] print_req_error: I/O error, dev loop1, sector 85888 -[2348106.064658] print_req_error: I/O error, dev loop1, sector 86000 -[2348106.064743] print_req_error: I/O error, dev loop1, sector 20480 -[2348106.064889] print_req_error: I/O error, dev loop1, sector 20488 -[2348106.108566] print_req_error: I/O error, dev loop1, sector 5300096 -[2348106.108714] print_req_error: I/O error, dev loop1, sector 5300208 -[2369643.393219] print_req_error: 54 callbacks suppressed -[2369643.393220] print_req_error: I/O error, dev loop1, sector 9494400 -[2369643.393441] print_req_error: I/O error, dev loop1, sector 9494616 -[2369643.393502] print_req_error: I/O error, dev loop1, sector 5300224 -[2369643.393590] print_req_error: I/O error, dev loop1, sector 5300232 -[2369643.480266] print_req_error: I/O error, dev loop1, sector 85888 -[2369643.480414] print_req_error: I/O error, dev loop1, sector 86000 -[2369643.480497] print_req_error: I/O error, dev loop1, sector 20480 -[2369643.480613] print_req_error: I/O error, dev loop1, sector 20488 -[2369643.490617] print_req_error: I/O error, dev loop1, sector 5300096 -[2369643.490773] print_req_error: I/O error, dev loop1, sector 5300208 -[2369698.686380] print_req_error: 54 callbacks suppressed -[2369698.686382] print_req_error: I/O error, dev loop1, sector 9494400 -[2369698.686529] print_req_error: I/O error, dev loop1, sector 9494616 -[2369698.686605] print_req_error: I/O error, dev loop1, sector 5300224 -[2369698.686721] print_req_error: I/O error, dev loop1, sector 5300232 -[2369698.746285] print_req_error: I/O error, dev loop1, sector 85888 -[2369698.746425] print_req_error: I/O error, dev loop1, sector 86000 -[2369698.746569] print_req_error: I/O error, dev loop1, sector 20480 -[2369698.746704] print_req_error: I/O error, dev loop1, sector 20488 -[2369698.756858] print_req_error: I/O error, dev loop1, sector 5300096 -[2369698.757014] print_req_error: I/O error, dev loop1, sector 5300208 -[2391240.449429] print_req_error: 54 callbacks suppressed -[2391240.449430] print_req_error: I/O error, dev loop1, sector 9494400 -[2391240.449652] print_req_error: I/O error, dev loop1, sector 9494616 -[2391240.449715] print_req_error: I/O error, dev loop1, sector 5300224 -[2391240.449806] print_req_error: I/O error, dev loop1, sector 5300232 -[2391240.499313] print_req_error: I/O error, dev loop1, sector 85888 -[2391240.499451] print_req_error: I/O error, dev loop1, sector 86000 -[2391240.499588] print_req_error: I/O error, dev loop1, sector 20480 -[2391240.499734] print_req_error: I/O error, dev loop1, sector 20488 -[2391240.509801] print_req_error: I/O error, dev loop1, sector 5300096 -[2391240.509975] print_req_error: I/O error, dev loop1, sector 5300208 -[2391297.880530] print_req_error: 54 callbacks suppressed -[2391297.880531] print_req_error: I/O error, dev loop1, sector 9494400 -[2391297.880601] print_req_error: I/O error, dev loop1, sector 9494616 -[2391297.880716] print_req_error: I/O error, dev loop1, sector 5300224 -[2391297.880809] print_req_error: I/O error, dev loop1, sector 5300232 -[2391297.910109] print_req_error: I/O error, dev loop1, sector 85888 -[2391297.910248] print_req_error: I/O error, dev loop1, sector 86000 -[2391297.910331] print_req_error: I/O error, dev loop1, sector 20480 -[2391297.910459] print_req_error: I/O error, dev loop1, sector 20488 -[2391297.953994] print_req_error: I/O error, dev loop1, sector 5300096 -[2391297.954151] print_req_error: I/O error, dev loop1, sector 5300208 -[2412846.155681] print_req_error: 54 callbacks suppressed -[2412846.155682] print_req_error: I/O error, dev loop1, sector 9494400 -[2412846.155929] print_req_error: I/O error, dev loop1, sector 9494616 -[2412846.156000] print_req_error: I/O error, dev loop1, sector 5300224 -[2412846.156094] print_req_error: I/O error, dev loop1, sector 5300232 -[2412846.193598] print_req_error: I/O error, dev loop1, sector 85888 -[2412846.193724] print_req_error: I/O error, dev loop1, sector 86000 -[2412846.193843] print_req_error: I/O error, dev loop1, sector 20480 -[2412846.193942] print_req_error: I/O error, dev loop1, sector 20488 -[2412846.204186] print_req_error: I/O error, dev loop1, sector 5300096 -[2412846.204328] print_req_error: I/O error, dev loop1, sector 5300208 -[2412902.913051] print_req_error: 54 callbacks suppressed -[2412902.913053] print_req_error: I/O error, dev loop1, sector 9494400 -[2412902.913171] print_req_error: I/O error, dev loop1, sector 9494616 -[2412902.913280] print_req_error: I/O error, dev loop1, sector 5300224 -[2412902.913371] print_req_error: I/O error, dev loop1, sector 5300232 -[2412902.971032] print_req_error: I/O error, dev loop1, sector 85888 -[2412902.971175] print_req_error: I/O error, dev loop1, sector 86000 -[2412902.971321] print_req_error: I/O error, dev loop1, sector 20480 -[2412902.971416] print_req_error: I/O error, dev loop1, sector 20488 -[2412902.981552] print_req_error: I/O error, dev loop1, sector 5300096 -[2412902.981690] print_req_error: I/O error, dev loop1, sector 5300208 -[2434442.158586] print_req_error: 54 callbacks suppressed -[2434442.158588] print_req_error: I/O error, dev loop1, sector 9494400 -[2434442.158736] print_req_error: I/O error, dev loop1, sector 9494616 -[2434442.158813] print_req_error: I/O error, dev loop1, sector 5300224 -[2434442.158893] print_req_error: I/O error, dev loop1, sector 5300232 -[2434442.201518] print_req_error: I/O error, dev loop1, sector 85888 -[2434442.201659] print_req_error: I/O error, dev loop1, sector 86000 -[2434442.201728] print_req_error: I/O error, dev loop1, sector 20480 -[2434442.201859] print_req_error: I/O error, dev loop1, sector 20488 -[2434442.211940] print_req_error: I/O error, dev loop1, sector 5300096 -[2434442.212094] print_req_error: I/O error, dev loop1, sector 5300208 -[2434499.436873] print_req_error: 54 callbacks suppressed -[2434499.436875] print_req_error: I/O error, dev loop1, sector 9494400 -[2434499.436971] print_req_error: I/O error, dev loop1, sector 9494616 -[2434499.437029] print_req_error: I/O error, dev loop1, sector 5300224 -[2434499.437121] print_req_error: I/O error, dev loop1, sector 5300232 -[2434499.500723] print_req_error: I/O error, dev loop1, sector 85888 -[2434499.500862] print_req_error: I/O error, dev loop1, sector 86000 -[2434499.500997] print_req_error: I/O error, dev loop1, sector 20480 -[2434499.501130] print_req_error: I/O error, dev loop1, sector 20488 -[2434499.511433] print_req_error: I/O error, dev loop1, sector 5300096 -[2434499.511572] print_req_error: I/O error, dev loop1, sector 5300208 -[2456103.668662] print_req_error: 54 callbacks suppressed -[2456103.668664] print_req_error: I/O error, dev loop1, sector 9494400 -[2456103.668903] print_req_error: I/O error, dev loop1, sector 9494616 -[2456103.668969] print_req_error: I/O error, dev loop1, sector 5300224 -[2456103.669069] print_req_error: I/O error, dev loop1, sector 5300232 -[2456103.749691] print_req_error: I/O error, dev loop1, sector 85888 -[2456103.749847] print_req_error: I/O error, dev loop1, sector 86000 -[2456103.749925] print_req_error: I/O error, dev loop1, sector 20480 -[2456103.750063] print_req_error: I/O error, dev loop1, sector 20488 -[2456103.759881] print_req_error: I/O error, dev loop1, sector 5300096 -[2456103.760037] print_req_error: I/O error, dev loop1, sector 5300208 -[2456163.819983] print_req_error: 54 callbacks suppressed -[2456163.819984] print_req_error: I/O error, dev loop1, sector 9494400 -[2456163.820134] print_req_error: I/O error, dev loop1, sector 9494616 -[2456163.820198] print_req_error: I/O error, dev loop1, sector 5300224 -[2456163.820294] print_req_error: I/O error, dev loop1, sector 5300232 -[2456163.871015] print_req_error: I/O error, dev loop1, sector 85888 -[2456163.871166] print_req_error: I/O error, dev loop1, sector 86000 -[2456163.871280] print_req_error: I/O error, dev loop1, sector 20480 -[2456163.871393] print_req_error: I/O error, dev loop1, sector 20488 -[2456163.881601] print_req_error: I/O error, dev loop1, sector 5300096 -[2456163.881747] print_req_error: I/O error, dev loop1, sector 5300208 -[2477643.216650] print_req_error: 54 callbacks suppressed -[2477643.216652] print_req_error: I/O error, dev loop1, sector 9494400 -[2477643.216879] print_req_error: I/O error, dev loop1, sector 9494616 -[2477643.216944] print_req_error: I/O error, dev loop1, sector 5300224 -[2477643.217031] print_req_error: I/O error, dev loop1, sector 5300232 -[2477643.259151] print_req_error: I/O error, dev loop1, sector 85888 -[2477643.259303] print_req_error: I/O error, dev loop1, sector 86000 -[2477643.259453] print_req_error: I/O error, dev loop1, sector 20480 -[2477643.259603] print_req_error: I/O error, dev loop1, sector 20488 -[2477643.269553] print_req_error: I/O error, dev loop1, sector 5300096 -[2477643.269705] print_req_error: I/O error, dev loop1, sector 5300208 -[2477700.948247] print_req_error: 54 callbacks suppressed -[2477700.948249] print_req_error: I/O error, dev loop1, sector 9494400 -[2477700.948357] print_req_error: I/O error, dev loop1, sector 9494616 -[2477700.948415] print_req_error: I/O error, dev loop1, sector 5300224 -[2477700.948506] print_req_error: I/O error, dev loop1, sector 5300232 -[2477700.952272] print_req_error: I/O error, dev loop1, sector 85888 -[2477700.952413] print_req_error: I/O error, dev loop1, sector 86000 -[2477700.952509] print_req_error: I/O error, dev loop1, sector 20480 -[2477700.952573] print_req_error: I/O error, dev loop1, sector 20488 -[2477700.957689] print_req_error: I/O error, dev loop1, sector 5300096 -[2477700.957838] print_req_error: I/O error, dev loop1, sector 5300208 -[2499261.932980] print_req_error: 54 callbacks suppressed -[2499261.932982] print_req_error: I/O error, dev loop1, sector 9494400 -[2499261.933183] print_req_error: I/O error, dev loop1, sector 9494616 -[2499261.933245] print_req_error: I/O error, dev loop1, sector 5300224 -[2499261.933387] print_req_error: I/O error, dev loop1, sector 5300232 -[2499261.977326] print_req_error: I/O error, dev loop1, sector 85888 -[2499261.977491] print_req_error: I/O error, dev loop1, sector 86000 -[2499261.977580] print_req_error: I/O error, dev loop1, sector 20480 -[2499261.977735] print_req_error: I/O error, dev loop1, sector 20488 -[2499261.988056] print_req_error: I/O error, dev loop1, sector 5300096 -[2499261.988192] print_req_error: I/O error, dev loop1, sector 5300208 -[2499323.446519] print_req_error: 54 callbacks suppressed -[2499323.446520] print_req_error: I/O error, dev loop1, sector 9494400 -[2499323.446643] print_req_error: I/O error, dev loop1, sector 9494616 -[2499323.446773] print_req_error: I/O error, dev loop1, sector 5300224 -[2499323.446927] print_req_error: I/O error, dev loop1, sector 5300232 -[2499323.448940] print_req_error: I/O error, dev loop1, sector 85888 -[2499323.449103] print_req_error: I/O error, dev loop1, sector 86000 -[2499323.449161] print_req_error: I/O error, dev loop1, sector 20480 -[2499323.449291] print_req_error: I/O error, dev loop1, sector 20488 -[2499323.450739] print_req_error: I/O error, dev loop1, sector 5300096 -[2499323.450823] print_req_error: I/O error, dev loop1, sector 5300208 -[2520843.280826] print_req_error: 54 callbacks suppressed -[2520843.280827] print_req_error: I/O error, dev loop1, sector 9494400 -[2520843.281083] print_req_error: I/O error, dev loop1, sector 9494616 -[2520843.281158] print_req_error: I/O error, dev loop1, sector 5300224 -[2520843.281293] print_req_error: I/O error, dev loop1, sector 5300232 -[2520843.319983] print_req_error: I/O error, dev loop1, sector 85888 -[2520843.320096] print_req_error: I/O error, dev loop1, sector 86000 -[2520843.320261] print_req_error: I/O error, dev loop1, sector 20480 -[2520843.320414] print_req_error: I/O error, dev loop1, sector 20488 -[2520843.351829] print_req_error: I/O error, dev loop1, sector 5300096 -[2520843.351974] print_req_error: I/O error, dev loop1, sector 5300208 -[2520900.978009] print_req_error: 54 callbacks suppressed -[2520900.978010] print_req_error: I/O error, dev loop1, sector 9494400 -[2520900.978149] print_req_error: I/O error, dev loop1, sector 9494616 -[2520900.978224] print_req_error: I/O error, dev loop1, sector 5300224 -[2520900.978351] print_req_error: I/O error, dev loop1, sector 5300232 -[2520901.030631] print_req_error: I/O error, dev loop1, sector 85888 -[2520901.030781] print_req_error: I/O error, dev loop1, sector 86000 -[2520901.030848] print_req_error: I/O error, dev loop1, sector 20480 -[2520901.030920] print_req_error: I/O error, dev loop1, sector 20488 -[2520901.041341] print_req_error: I/O error, dev loop1, sector 5300096 -[2520901.041480] print_req_error: I/O error, dev loop1, sector 5300208 -[2542450.686954] print_req_error: 54 callbacks suppressed -[2542450.686956] print_req_error: I/O error, dev loop1, sector 9494400 -[2542450.687187] print_req_error: I/O error, dev loop1, sector 9494616 -[2542450.687267] print_req_error: I/O error, dev loop1, sector 5300224 -[2542450.687374] print_req_error: I/O error, dev loop1, sector 5300232 -[2542450.734988] print_req_error: I/O error, dev loop1, sector 85888 -[2542450.735139] print_req_error: I/O error, dev loop1, sector 86000 -[2542450.735291] print_req_error: I/O error, dev loop1, sector 20480 -[2542450.735441] print_req_error: I/O error, dev loop1, sector 20488 -[2542450.745541] print_req_error: I/O error, dev loop1, sector 5300096 -[2542450.745693] print_req_error: I/O error, dev loop1, sector 5300208 -[2542510.065446] print_req_error: 54 callbacks suppressed -[2542510.065448] print_req_error: I/O error, dev loop1, sector 9494400 -[2542510.065562] print_req_error: I/O error, dev loop1, sector 9494616 -[2542510.065622] print_req_error: I/O error, dev loop1, sector 5300224 -[2542510.065650] print_req_error: I/O error, dev loop1, sector 5300232 -[2542510.123230] print_req_error: I/O error, dev loop1, sector 85888 -[2542510.123379] print_req_error: I/O error, dev loop1, sector 86000 -[2542510.123519] print_req_error: I/O error, dev loop1, sector 20480 -[2542510.123663] print_req_error: I/O error, dev loop1, sector 20488 -[2542510.133786] print_req_error: I/O error, dev loop1, sector 5300096 -[2542510.133924] print_req_error: I/O error, dev loop1, sector 5300208 -[2564045.203961] print_req_error: 54 callbacks suppressed -[2564045.203962] print_req_error: I/O error, dev loop1, sector 9494400 -[2564045.204123] print_req_error: I/O error, dev loop1, sector 9494616 -[2564045.204186] print_req_error: I/O error, dev loop1, sector 5300224 -[2564045.204215] print_req_error: I/O error, dev loop1, sector 5300232 -[2564045.255472] print_req_error: I/O error, dev loop1, sector 85888 -[2564045.255599] print_req_error: I/O error, dev loop1, sector 86000 -[2564045.255744] print_req_error: I/O error, dev loop1, sector 20480 -[2564045.255842] print_req_error: I/O error, dev loop1, sector 20488 -[2564045.299007] print_req_error: I/O error, dev loop1, sector 5300096 -[2564045.299118] print_req_error: I/O error, dev loop1, sector 5300208 -[2564099.682454] print_req_error: 54 callbacks suppressed -[2564099.682456] print_req_error: I/O error, dev loop1, sector 9494400 -[2564099.682544] print_req_error: I/O error, dev loop1, sector 9494616 -[2564099.682609] print_req_error: I/O error, dev loop1, sector 5300224 -[2564099.682712] print_req_error: I/O error, dev loop1, sector 5300232 -[2564099.684605] print_req_error: I/O error, dev loop1, sector 85888 -[2564099.684726] print_req_error: I/O error, dev loop1, sector 86000 -[2564099.684823] print_req_error: I/O error, dev loop1, sector 20480 -[2564099.684913] print_req_error: I/O error, dev loop1, sector 20488 -[2564099.698660] print_req_error: I/O error, dev loop1, sector 5300096 -[2564099.698772] print_req_error: I/O error, dev loop1, sector 5300208 -[2585640.386471] print_req_error: 54 callbacks suppressed -[2585640.386473] print_req_error: I/O error, dev loop1, sector 9494400 -[2585640.386684] print_req_error: I/O error, dev loop1, sector 9494616 -[2585640.386747] print_req_error: I/O error, dev loop1, sector 5300224 -[2585640.386845] print_req_error: I/O error, dev loop1, sector 5300232 -[2585640.490270] print_req_error: I/O error, dev loop1, sector 85888 -[2585640.490372] print_req_error: I/O error, dev loop1, sector 86000 -[2585640.490509] print_req_error: I/O error, dev loop1, sector 20480 -[2585640.490604] print_req_error: I/O error, dev loop1, sector 20488 -[2585640.560227] print_req_error: I/O error, dev loop1, sector 5300096 -[2585640.560394] print_req_error: I/O error, dev loop1, sector 5300208 -[2585699.596860] print_req_error: 54 callbacks suppressed -[2585699.596861] print_req_error: I/O error, dev loop1, sector 9494400 -[2585699.596958] print_req_error: I/O error, dev loop1, sector 9494616 -[2585699.597006] print_req_error: I/O error, dev loop1, sector 5300224 -[2585699.597057] print_req_error: I/O error, dev loop1, sector 5300232 -[2585699.648223] print_req_error: I/O error, dev loop1, sector 85888 -[2585699.648388] print_req_error: I/O error, dev loop1, sector 86000 -[2585699.648536] print_req_error: I/O error, dev loop1, sector 20480 -[2585699.648637] print_req_error: I/O error, dev loop1, sector 20488 -[2585699.658832] print_req_error: I/O error, dev loop1, sector 5300096 -[2585699.658975] print_req_error: I/O error, dev loop1, sector 5300208 -[2607239.924971] print_req_error: 54 callbacks suppressed -[2607239.924973] print_req_error: I/O error, dev loop1, sector 9494400 -[2607239.925168] print_req_error: I/O error, dev loop1, sector 9494616 -[2607239.925228] print_req_error: I/O error, dev loop1, sector 5300224 -[2607239.925259] print_req_error: I/O error, dev loop1, sector 5300232 -[2607239.968843] print_req_error: I/O error, dev loop1, sector 85888 -[2607239.969008] print_req_error: I/O error, dev loop1, sector 86000 -[2607239.969091] print_req_error: I/O error, dev loop1, sector 20480 -[2607239.969255] print_req_error: I/O error, dev loop1, sector 20488 -[2607239.979299] print_req_error: I/O error, dev loop1, sector 5300096 -[2607239.979445] print_req_error: I/O error, dev loop1, sector 5300208 -[2607298.402303] print_req_error: 54 callbacks suppressed -[2607298.402304] print_req_error: I/O error, dev loop1, sector 9494400 -[2607298.402410] print_req_error: I/O error, dev loop1, sector 9494616 -[2607298.402466] print_req_error: I/O error, dev loop1, sector 5300224 -[2607298.402587] print_req_error: I/O error, dev loop1, sector 5300232 -[2607298.445597] print_req_error: I/O error, dev loop1, sector 85888 -[2607298.445741] print_req_error: I/O error, dev loop1, sector 86000 -[2607298.445885] print_req_error: I/O error, dev loop1, sector 20480 -[2607298.446035] print_req_error: I/O error, dev loop1, sector 20488 -[2607298.456281] print_req_error: I/O error, dev loop1, sector 5300096 -[2607298.456426] print_req_error: I/O error, dev loop1, sector 5300208 -[2628837.822047] print_req_error: 54 callbacks suppressed -[2628837.822048] print_req_error: I/O error, dev loop1, sector 9494400 -[2628837.822242] print_req_error: I/O error, dev loop1, sector 9494616 -[2628837.822308] print_req_error: I/O error, dev loop1, sector 5300224 -[2628837.822340] print_req_error: I/O error, dev loop1, sector 5300232 -[2628837.873366] print_req_error: I/O error, dev loop1, sector 85888 -[2628837.873515] print_req_error: I/O error, dev loop1, sector 86000 -[2628837.873657] print_req_error: I/O error, dev loop1, sector 20480 -[2628837.873764] print_req_error: I/O error, dev loop1, sector 20488 -[2628837.883752] print_req_error: I/O error, dev loop1, sector 5300096 -[2628837.883900] print_req_error: I/O error, dev loop1, sector 5300208 -[2628896.004288] print_req_error: 54 callbacks suppressed -[2628896.004290] print_req_error: I/O error, dev loop1, sector 9494400 -[2628896.004409] print_req_error: I/O error, dev loop1, sector 9494616 -[2628896.004480] print_req_error: I/O error, dev loop1, sector 5300224 -[2628896.004579] print_req_error: I/O error, dev loop1, sector 5300232 -[2628896.022008] print_req_error: I/O error, dev loop1, sector 85888 -[2628896.022118] print_req_error: I/O error, dev loop1, sector 86000 -[2628896.022227] print_req_error: I/O error, dev loop1, sector 20480 -[2628896.022335] print_req_error: I/O error, dev loop1, sector 20488 -[2628896.027460] print_req_error: I/O error, dev loop1, sector 5300096 -[2628896.027554] print_req_error: I/O error, dev loop1, sector 5300208 -[2650438.262483] print_req_error: 54 callbacks suppressed -[2650438.262485] print_req_error: I/O error, dev loop1, sector 9494400 -[2650438.262747] print_req_error: I/O error, dev loop1, sector 9494616 -[2650438.262817] print_req_error: I/O error, dev loop1, sector 5300224 -[2650438.262950] print_req_error: I/O error, dev loop1, sector 5300232 -[2650438.309559] print_req_error: I/O error, dev loop1, sector 85888 -[2650438.309743] print_req_error: I/O error, dev loop1, sector 86000 -[2650438.309830] print_req_error: I/O error, dev loop1, sector 20480 -[2650438.309974] print_req_error: I/O error, dev loop1, sector 20488 -[2650438.320558] print_req_error: I/O error, dev loop1, sector 5300096 -[2650438.320710] print_req_error: I/O error, dev loop1, sector 5300208 -[2650497.246965] print_req_error: 54 callbacks suppressed -[2650497.246967] print_req_error: I/O error, dev loop1, sector 9494400 -[2650497.247049] print_req_error: I/O error, dev loop1, sector 9494616 -[2650497.247086] print_req_error: I/O error, dev loop1, sector 5300224 -[2650497.247188] print_req_error: I/O error, dev loop1, sector 5300232 -[2650497.258079] print_req_error: I/O error, dev loop1, sector 85888 -[2650497.258191] print_req_error: I/O error, dev loop1, sector 86000 -[2650497.258251] print_req_error: I/O error, dev loop1, sector 20480 -[2650497.258374] print_req_error: I/O error, dev loop1, sector 20488 -[2650497.286243] print_req_error: I/O error, dev loop1, sector 5300096 -[2650497.286388] print_req_error: I/O error, dev loop1, sector 5300208 -[2672037.600551] print_req_error: 54 callbacks suppressed -[2672037.600552] print_req_error: I/O error, dev loop1, sector 9494400 -[2672037.600733] print_req_error: I/O error, dev loop1, sector 9494616 -[2672037.600836] print_req_error: I/O error, dev loop1, sector 5300224 -[2672037.600942] print_req_error: I/O error, dev loop1, sector 5300232 -[2672037.911080] print_req_error: I/O error, dev loop1, sector 85888 -[2672037.911252] print_req_error: I/O error, dev loop1, sector 86000 -[2672037.911338] print_req_error: I/O error, dev loop1, sector 20480 -[2672037.911409] print_req_error: I/O error, dev loop1, sector 20488 -[2672038.116902] print_req_error: I/O error, dev loop1, sector 5300096 -[2672038.117067] print_req_error: I/O error, dev loop1, sector 5300208 -[2672097.782012] print_req_error: 54 callbacks suppressed -[2672097.782014] print_req_error: I/O error, dev loop1, sector 9494400 -[2672097.782166] print_req_error: I/O error, dev loop1, sector 9494616 -[2672097.782274] print_req_error: I/O error, dev loop1, sector 5300224 -[2672097.782344] print_req_error: I/O error, dev loop1, sector 5300232 -[2672097.817002] print_req_error: I/O error, dev loop1, sector 85888 -[2672097.817144] print_req_error: I/O error, dev loop1, sector 86000 -[2672097.817221] print_req_error: I/O error, dev loop1, sector 20480 -[2672097.817375] print_req_error: I/O error, dev loop1, sector 20488 -[2672097.860971] print_req_error: I/O error, dev loop1, sector 5300096 -[2672097.861125] print_req_error: I/O error, dev loop1, sector 5300208 -[2693642.041832] print_req_error: 54 callbacks suppressed -[2693642.041833] print_req_error: I/O error, dev loop1, sector 9494400 -[2693642.042023] print_req_error: I/O error, dev loop1, sector 9494616 -[2693642.042085] print_req_error: I/O error, dev loop1, sector 5300224 -[2693642.042213] print_req_error: I/O error, dev loop1, sector 5300232 -[2693642.102519] print_req_error: I/O error, dev loop1, sector 85888 -[2693642.102699] print_req_error: I/O error, dev loop1, sector 86000 -[2693642.102850] print_req_error: I/O error, dev loop1, sector 20480 -[2693642.102998] print_req_error: I/O error, dev loop1, sector 20488 -[2693642.113049] print_req_error: I/O error, dev loop1, sector 5300096 -[2693642.113202] print_req_error: I/O error, dev loop1, sector 5300208 -[2693699.891841] print_req_error: 54 callbacks suppressed -[2693699.891842] print_req_error: I/O error, dev loop1, sector 9494400 -[2693699.891991] print_req_error: I/O error, dev loop1, sector 9494616 -[2693699.892051] print_req_error: I/O error, dev loop1, sector 5300224 -[2693699.892143] print_req_error: I/O error, dev loop1, sector 5300232 -[2693699.906214] print_req_error: I/O error, dev loop1, sector 85888 -[2693699.906325] print_req_error: I/O error, dev loop1, sector 86000 -[2693699.906384] print_req_error: I/O error, dev loop1, sector 20480 -[2693699.906475] print_req_error: I/O error, dev loop1, sector 20488 -[2693699.911921] print_req_error: I/O error, dev loop1, sector 5300096 -[2693699.912053] print_req_error: I/O error, dev loop1, sector 5300208 -[2715236.075419] print_req_error: 54 callbacks suppressed -[2715236.075420] print_req_error: I/O error, dev loop1, sector 9494400 -[2715236.075619] print_req_error: I/O error, dev loop1, sector 9494616 -[2715236.075682] print_req_error: I/O error, dev loop1, sector 5300224 -[2715236.075781] print_req_error: I/O error, dev loop1, sector 5300232 -[2715236.181342] print_req_error: I/O error, dev loop1, sector 85888 -[2715236.181498] print_req_error: I/O error, dev loop1, sector 86000 -[2715236.181646] print_req_error: I/O error, dev loop1, sector 20480 -[2715236.181802] print_req_error: I/O error, dev loop1, sector 20488 -[2715236.226301] print_req_error: I/O error, dev loop1, sector 5300096 -[2715236.226483] print_req_error: I/O error, dev loop1, sector 5300208 -[2715293.990452] print_req_error: 54 callbacks suppressed -[2715293.990454] print_req_error: I/O error, dev loop1, sector 9494400 -[2715293.990602] print_req_error: I/O error, dev loop1, sector 9494616 -[2715293.990663] print_req_error: I/O error, dev loop1, sector 5300224 -[2715293.990790] print_req_error: I/O error, dev loop1, sector 5300232 -[2715294.038690] print_req_error: I/O error, dev loop1, sector 85888 -[2715294.038834] print_req_error: I/O error, dev loop1, sector 86000 -[2715294.038978] print_req_error: I/O error, dev loop1, sector 20480 -[2715294.039116] print_req_error: I/O error, dev loop1, sector 20488 -[2715294.049167] print_req_error: I/O error, dev loop1, sector 5300096 -[2715294.049312] print_req_error: I/O error, dev loop1, sector 5300208 -[2736837.627712] print_req_error: 54 callbacks suppressed -[2736837.627714] print_req_error: I/O error, dev loop1, sector 9494400 -[2736837.627923] print_req_error: I/O error, dev loop1, sector 9494616 -[2736837.627995] print_req_error: I/O error, dev loop1, sector 5300224 -[2736837.628082] print_req_error: I/O error, dev loop1, sector 5300232 -[2736837.670124] print_req_error: I/O error, dev loop1, sector 85888 -[2736837.670291] print_req_error: I/O error, dev loop1, sector 86000 -[2736837.670390] print_req_error: I/O error, dev loop1, sector 20480 -[2736837.670546] print_req_error: I/O error, dev loop1, sector 20488 -[2736837.701903] print_req_error: I/O error, dev loop1, sector 5300096 -[2736837.702055] print_req_error: I/O error, dev loop1, sector 5300208 -[2736894.915792] print_req_error: 54 callbacks suppressed -[2736894.915794] print_req_error: I/O error, dev loop1, sector 9494400 -[2736894.915945] print_req_error: I/O error, dev loop1, sector 9494616 -[2736894.916011] print_req_error: I/O error, dev loop1, sector 5300224 -[2736894.916044] print_req_error: I/O error, dev loop1, sector 5300232 -[2736894.918335] print_req_error: I/O error, dev loop1, sector 85888 -[2736894.918472] print_req_error: I/O error, dev loop1, sector 86000 -[2736894.918551] print_req_error: I/O error, dev loop1, sector 20480 -[2736894.918601] print_req_error: I/O error, dev loop1, sector 20488 -[2736894.924535] print_req_error: I/O error, dev loop1, sector 5300096 -[2736894.924645] print_req_error: I/O error, dev loop1, sector 5300208 -[2758439.253962] print_req_error: 54 callbacks suppressed -[2758439.253964] print_req_error: I/O error, dev loop1, sector 9494400 -[2758439.254136] print_req_error: I/O error, dev loop1, sector 9494616 -[2758439.254234] print_req_error: I/O error, dev loop1, sector 5300224 -[2758439.254353] print_req_error: I/O error, dev loop1, sector 5300232 -[2758439.302007] print_req_error: I/O error, dev loop1, sector 85888 -[2758439.302167] print_req_error: I/O error, dev loop1, sector 86000 -[2758439.302259] print_req_error: I/O error, dev loop1, sector 20480 -[2758439.302416] print_req_error: I/O error, dev loop1, sector 20488 -[2758439.312317] print_req_error: I/O error, dev loop1, sector 5300096 -[2758439.312473] print_req_error: I/O error, dev loop1, sector 5300208 -[2758497.709296] print_req_error: 54 callbacks suppressed -[2758497.709298] print_req_error: I/O error, dev loop1, sector 9494400 -[2758497.709422] print_req_error: I/O error, dev loop1, sector 9494616 -[2758497.709486] print_req_error: I/O error, dev loop1, sector 5300224 -[2758497.709520] print_req_error: I/O error, dev loop1, sector 5300232 -[2758497.711161] print_req_error: I/O error, dev loop1, sector 85888 -[2758497.711312] print_req_error: I/O error, dev loop1, sector 86000 -[2758497.711387] print_req_error: I/O error, dev loop1, sector 20480 -[2758497.711504] print_req_error: I/O error, dev loop1, sector 20488 -[2758497.712560] print_req_error: I/O error, dev loop1, sector 5300096 -[2758497.712682] print_req_error: I/O error, dev loop1, sector 5300208 -[2780036.121667] print_req_error: 54 callbacks suppressed -[2780036.121668] print_req_error: I/O error, dev loop1, sector 9494400 -[2780036.121801] print_req_error: I/O error, dev loop1, sector 9494616 -[2780036.121836] print_req_error: I/O error, dev loop1, sector 5300224 -[2780036.121970] print_req_error: I/O error, dev loop1, sector 5300232 -[2780036.173720] print_req_error: I/O error, dev loop1, sector 85888 -[2780036.173889] print_req_error: I/O error, dev loop1, sector 86000 -[2780036.173972] print_req_error: I/O error, dev loop1, sector 20480 -[2780036.174117] print_req_error: I/O error, dev loop1, sector 20488 -[2780036.205487] print_req_error: I/O error, dev loop1, sector 5300096 -[2780036.205586] print_req_error: I/O error, dev loop1, sector 5300208 -[2780092.970132] print_req_error: 54 callbacks suppressed -[2780092.970156] print_req_error: I/O error, dev loop1, sector 9494400 -[2780092.970257] print_req_error: I/O error, dev loop1, sector 9494616 -[2780092.970319] print_req_error: I/O error, dev loop1, sector 5300224 -[2780092.970406] print_req_error: I/O error, dev loop1, sector 5300232 -[2780092.971506] print_req_error: I/O error, dev loop1, sector 85888 -[2780092.971588] print_req_error: I/O error, dev loop1, sector 86000 -[2780092.971616] print_req_error: I/O error, dev loop1, sector 20480 -[2780092.971684] print_req_error: I/O error, dev loop1, sector 20488 -[2780092.983513] print_req_error: I/O error, dev loop1, sector 5300096 -[2780092.983667] print_req_error: I/O error, dev loop1, sector 5300208 -[2801637.102362] print_req_error: 54 callbacks suppressed -[2801637.102364] print_req_error: I/O error, dev loop1, sector 9494400 -[2801637.102544] print_req_error: I/O error, dev loop1, sector 9494616 -[2801637.102678] print_req_error: I/O error, dev loop1, sector 5300224 -[2801637.102801] print_req_error: I/O error, dev loop1, sector 5300232 -[2801637.149329] print_req_error: I/O error, dev loop1, sector 85888 -[2801637.149496] print_req_error: I/O error, dev loop1, sector 86000 -[2801637.149590] print_req_error: I/O error, dev loop1, sector 20480 -[2801637.149745] print_req_error: I/O error, dev loop1, sector 20488 -[2801637.193116] print_req_error: I/O error, dev loop1, sector 5300096 -[2801637.193267] print_req_error: I/O error, dev loop1, sector 5300208 -[2801698.988086] print_req_error: 54 callbacks suppressed -[2801698.988088] print_req_error: I/O error, dev loop1, sector 9494400 -[2801698.988264] print_req_error: I/O error, dev loop1, sector 9494616 -[2801698.988328] print_req_error: I/O error, dev loop1, sector 5300224 -[2801698.988374] print_req_error: I/O error, dev loop1, sector 5300232 -[2801699.037381] print_req_error: I/O error, dev loop1, sector 85888 -[2801699.037524] print_req_error: I/O error, dev loop1, sector 86000 -[2801699.037602] print_req_error: I/O error, dev loop1, sector 20480 -[2801699.037739] print_req_error: I/O error, dev loop1, sector 20488 -[2801699.048017] print_req_error: I/O error, dev loop1, sector 5300096 -[2801699.048163] print_req_error: I/O error, dev loop1, sector 5300208 -[2823236.589303] print_req_error: 54 callbacks suppressed -[2823236.589305] print_req_error: I/O error, dev loop1, sector 9494400 -[2823236.589546] print_req_error: I/O error, dev loop1, sector 9494616 -[2823236.589611] print_req_error: I/O error, dev loop1, sector 5300224 -[2823236.589706] print_req_error: I/O error, dev loop1, sector 5300232 -[2823237.123073] print_req_error: I/O error, dev loop1, sector 85888 -[2823237.123244] print_req_error: I/O error, dev loop1, sector 86000 -[2823237.123328] print_req_error: I/O error, dev loop1, sector 20480 -[2823237.123469] print_req_error: I/O error, dev loop1, sector 20488 -[2823237.154731] print_req_error: I/O error, dev loop1, sector 5300096 -[2823237.154883] print_req_error: I/O error, dev loop1, sector 5300208 -[2823294.094139] print_req_error: 54 callbacks suppressed -[2823294.094140] print_req_error: I/O error, dev loop1, sector 9494400 -[2823294.094226] print_req_error: I/O error, dev loop1, sector 9494616 -[2823294.094293] print_req_error: I/O error, dev loop1, sector 5300224 -[2823294.094368] print_req_error: I/O error, dev loop1, sector 5300232 -[2823294.145004] print_req_error: I/O error, dev loop1, sector 85888 -[2823294.145141] print_req_error: I/O error, dev loop1, sector 86000 -[2823294.145215] print_req_error: I/O error, dev loop1, sector 20480 -[2823294.145341] print_req_error: I/O error, dev loop1, sector 20488 -[2823294.155207] print_req_error: I/O error, dev loop1, sector 5300096 -[2823294.155303] print_req_error: I/O error, dev loop1, sector 5300208 -[2844835.545593] print_req_error: 54 callbacks suppressed -[2844835.545595] print_req_error: I/O error, dev loop1, sector 9494400 -[2844835.545835] print_req_error: I/O error, dev loop1, sector 9494616 -[2844835.545901] print_req_error: I/O error, dev loop1, sector 5300224 -[2844835.545937] print_req_error: I/O error, dev loop1, sector 5300232 -[2844835.586263] print_req_error: I/O error, dev loop1, sector 85888 -[2844835.586417] print_req_error: I/O error, dev loop1, sector 86000 -[2844835.586562] print_req_error: I/O error, dev loop1, sector 20480 -[2844835.586710] print_req_error: I/O error, dev loop1, sector 20488 -[2844835.596654] print_req_error: I/O error, dev loop1, sector 5300096 -[2844835.596801] print_req_error: I/O error, dev loop1, sector 5300208 -[2844893.850206] print_req_error: 54 callbacks suppressed -[2844893.850208] print_req_error: I/O error, dev loop1, sector 9494400 -[2844893.850327] print_req_error: I/O error, dev loop1, sector 9494616 -[2844893.850387] print_req_error: I/O error, dev loop1, sector 5300224 -[2844893.850508] print_req_error: I/O error, dev loop1, sector 5300232 -[2844893.897174] print_req_error: I/O error, dev loop1, sector 85888 -[2844893.897306] print_req_error: I/O error, dev loop1, sector 86000 -[2844893.897459] print_req_error: I/O error, dev loop1, sector 20480 -[2844893.897602] print_req_error: I/O error, dev loop1, sector 20488 -[2844893.907478] print_req_error: I/O error, dev loop1, sector 5300096 -[2844893.907623] print_req_error: I/O error, dev loop1, sector 5300208 -[2866436.206426] print_req_error: 54 callbacks suppressed -[2866436.206428] print_req_error: I/O error, dev loop1, sector 9494400 -[2866436.206653] print_req_error: I/O error, dev loop1, sector 9494616 -[2866436.206711] print_req_error: I/O error, dev loop1, sector 5300224 -[2866436.206794] print_req_error: I/O error, dev loop1, sector 5300232 -[2866436.257428] print_req_error: I/O error, dev loop1, sector 85888 -[2866436.257588] print_req_error: I/O error, dev loop1, sector 86000 -[2866436.257658] print_req_error: I/O error, dev loop1, sector 20480 -[2866436.257781] print_req_error: I/O error, dev loop1, sector 20488 -[2866436.268068] print_req_error: I/O error, dev loop1, sector 5300096 -[2866436.268209] print_req_error: I/O error, dev loop1, sector 5300208 -[2866493.831641] print_req_error: 54 callbacks suppressed -[2866493.831642] print_req_error: I/O error, dev loop1, sector 9494400 -[2866493.831724] print_req_error: I/O error, dev loop1, sector 9494616 -[2866493.831758] print_req_error: I/O error, dev loop1, sector 5300224 -[2866493.831825] print_req_error: I/O error, dev loop1, sector 5300232 -[2866493.867705] print_req_error: I/O error, dev loop1, sector 85888 -[2866493.867788] print_req_error: I/O error, dev loop1, sector 86000 -[2866493.867855] print_req_error: I/O error, dev loop1, sector 20480 -[2866493.867927] print_req_error: I/O error, dev loop1, sector 20488 -[2866493.911999] print_req_error: I/O error, dev loop1, sector 5300096 -[2866493.912131] print_req_error: I/O error, dev loop1, sector 5300208 -[2888040.321150] print_req_error: 54 callbacks suppressed -[2888040.321152] print_req_error: I/O error, dev loop1, sector 9494400 -[2888040.321346] print_req_error: I/O error, dev loop1, sector 9494616 -[2888040.321408] print_req_error: I/O error, dev loop1, sector 5300224 -[2888040.321534] print_req_error: I/O error, dev loop1, sector 5300232 -[2888040.399396] print_req_error: I/O error, dev loop1, sector 85888 -[2888040.399545] print_req_error: I/O error, dev loop1, sector 86000 -[2888040.399641] print_req_error: I/O error, dev loop1, sector 20480 -[2888040.399789] print_req_error: I/O error, dev loop1, sector 20488 -[2888040.420874] print_req_error: I/O error, dev loop1, sector 5300096 -[2888040.421026] print_req_error: I/O error, dev loop1, sector 5300208 -[2888099.802044] print_req_error: 54 callbacks suppressed -[2888099.802045] print_req_error: I/O error, dev loop1, sector 9494400 -[2888099.802117] print_req_error: I/O error, dev loop1, sector 9494616 -[2888099.802168] print_req_error: I/O error, dev loop1, sector 5300224 -[2888099.802204] print_req_error: I/O error, dev loop1, sector 5300232 -[2888099.825369] print_req_error: I/O error, dev loop1, sector 85888 -[2888099.825451] print_req_error: I/O error, dev loop1, sector 86000 -[2888099.825517] print_req_error: I/O error, dev loop1, sector 20480 -[2888099.825584] print_req_error: I/O error, dev loop1, sector 20488 -[2888099.830689] print_req_error: I/O error, dev loop1, sector 5300096 -[2888099.830757] print_req_error: I/O error, dev loop1, sector 5300208 -[2909633.848576] print_req_error: 54 callbacks suppressed -[2909633.848578] print_req_error: I/O error, dev loop1, sector 9494400 -[2909633.848792] print_req_error: I/O error, dev loop1, sector 9494616 -[2909633.848886] print_req_error: I/O error, dev loop1, sector 5300224 -[2909633.848977] print_req_error: I/O error, dev loop1, sector 5300232 -[2909633.895892] print_req_error: I/O error, dev loop1, sector 85888 -[2909633.896003] print_req_error: I/O error, dev loop1, sector 86000 -[2909633.896139] print_req_error: I/O error, dev loop1, sector 20480 -[2909633.896277] print_req_error: I/O error, dev loop1, sector 20488 -[2909633.939700] print_req_error: I/O error, dev loop1, sector 5300096 -[2909633.939850] print_req_error: I/O error, dev loop1, sector 5300208 -[2909692.509340] print_req_error: 54 callbacks suppressed -[2909692.509342] print_req_error: I/O error, dev loop1, sector 9494400 -[2909692.509458] print_req_error: I/O error, dev loop1, sector 9494616 -[2909692.509522] print_req_error: I/O error, dev loop1, sector 5300224 -[2909692.509644] print_req_error: I/O error, dev loop1, sector 5300232 -[2909692.511192] print_req_error: I/O error, dev loop1, sector 85888 -[2909692.511296] print_req_error: I/O error, dev loop1, sector 86000 -[2909692.511355] print_req_error: I/O error, dev loop1, sector 20480 -[2909692.511447] print_req_error: I/O error, dev loop1, sector 20488 -[2909692.539275] print_req_error: I/O error, dev loop1, sector 5300096 -[2909692.539398] print_req_error: I/O error, dev loop1, sector 5300208 -[2931236.578934] print_req_error: 54 callbacks suppressed -[2931236.578936] print_req_error: I/O error, dev loop1, sector 9494400 -[2931236.579183] print_req_error: I/O error, dev loop1, sector 9494616 -[2931236.579254] print_req_error: I/O error, dev loop1, sector 5300224 -[2931236.579326] print_req_error: I/O error, dev loop1, sector 5300232 -[2931236.625290] print_req_error: I/O error, dev loop1, sector 85888 -[2931236.625457] print_req_error: I/O error, dev loop1, sector 86000 -[2931236.625553] print_req_error: I/O error, dev loop1, sector 20480 -[2931236.625704] print_req_error: I/O error, dev loop1, sector 20488 -[2931236.635509] print_req_error: I/O error, dev loop1, sector 5300096 -[2931236.635695] print_req_error: I/O error, dev loop1, sector 5300208 -[2931292.770310] print_req_error: 54 callbacks suppressed -[2931292.770311] print_req_error: I/O error, dev loop1, sector 9494400 -[2931292.770383] print_req_error: I/O error, dev loop1, sector 9494616 -[2931292.770447] print_req_error: I/O error, dev loop1, sector 5300224 -[2931292.770533] print_req_error: I/O error, dev loop1, sector 5300232 -[2931292.784678] print_req_error: I/O error, dev loop1, sector 85888 -[2931292.784793] print_req_error: I/O error, dev loop1, sector 86000 -[2931292.784906] print_req_error: I/O error, dev loop1, sector 20480 -[2931292.785020] print_req_error: I/O error, dev loop1, sector 20488 -[2931292.790256] print_req_error: I/O error, dev loop1, sector 5300096 -[2931292.790413] print_req_error: I/O error, dev loop1, sector 5300208 -[2952859.457978] print_req_error: 54 callbacks suppressed -[2952859.457979] print_req_error: I/O error, dev loop1, sector 9494400 -[2952859.458200] print_req_error: I/O error, dev loop1, sector 9494616 -[2952859.458260] print_req_error: I/O error, dev loop1, sector 5300224 -[2952859.458355] print_req_error: I/O error, dev loop1, sector 5300232 -[2952859.468678] print_req_error: I/O error, dev loop1, sector 85888 -[2952859.468789] print_req_error: I/O error, dev loop1, sector 86000 -[2952859.468906] print_req_error: I/O error, dev loop1, sector 20480 -[2952859.469016] print_req_error: I/O error, dev loop1, sector 20488 -[2952859.474360] print_req_error: I/O error, dev loop1, sector 5300096 -[2952859.474490] print_req_error: I/O error, dev loop1, sector 5300208 -[2952919.959887] print_req_error: 54 callbacks suppressed -[2952919.959888] print_req_error: I/O error, dev loop1, sector 9494400 -[2952919.960046] print_req_error: I/O error, dev loop1, sector 9494616 -[2952919.960112] print_req_error: I/O error, dev loop1, sector 5300224 -[2952919.960216] print_req_error: I/O error, dev loop1, sector 5300232 -[2952919.979258] print_req_error: I/O error, dev loop1, sector 85888 -[2952919.979382] print_req_error: I/O error, dev loop1, sector 86000 -[2952919.979505] print_req_error: I/O error, dev loop1, sector 20480 -[2952919.979631] print_req_error: I/O error, dev loop1, sector 20488 -[2952919.985305] print_req_error: I/O error, dev loop1, sector 5300096 -[2952919.985473] print_req_error: I/O error, dev loop1, sector 5300208 -[2974438.403854] print_req_error: 54 callbacks suppressed -[2974438.403856] print_req_error: I/O error, dev loop1, sector 9494400 -[2974438.404102] print_req_error: I/O error, dev loop1, sector 9494616 -[2974438.404168] print_req_error: I/O error, dev loop1, sector 5300224 -[2974438.404301] print_req_error: I/O error, dev loop1, sector 5300232 -[2974438.446573] print_req_error: I/O error, dev loop1, sector 85888 -[2974438.446755] print_req_error: I/O error, dev loop1, sector 86000 -[2974438.446918] print_req_error: I/O error, dev loop1, sector 20480 -[2974438.447054] print_req_error: I/O error, dev loop1, sector 20488 -[2974438.457171] print_req_error: I/O error, dev loop1, sector 5300096 -[2974438.457319] print_req_error: I/O error, dev loop1, sector 5300208 -[2974495.048081] print_req_error: 54 callbacks suppressed -[2974495.048082] print_req_error: I/O error, dev loop1, sector 9494400 -[2974495.048154] print_req_error: I/O error, dev loop1, sector 9494616 -[2974495.048205] print_req_error: I/O error, dev loop1, sector 5300224 -[2974495.048270] print_req_error: I/O error, dev loop1, sector 5300232 -[2974495.165834] print_req_error: I/O error, dev loop1, sector 85888 -[2974495.165954] print_req_error: I/O error, dev loop1, sector 86000 -[2974495.166058] print_req_error: I/O error, dev loop1, sector 20480 -[2974495.166128] print_req_error: I/O error, dev loop1, sector 20488 -[2974495.211023] print_req_error: I/O error, dev loop1, sector 5300096 -[2974495.211165] print_req_error: I/O error, dev loop1, sector 5300208 -[2996033.988114] print_req_error: 54 callbacks suppressed -[2996033.988116] print_req_error: I/O error, dev loop1, sector 9494400 -[2996033.988350] print_req_error: I/O error, dev loop1, sector 9494616 -[2996033.988415] print_req_error: I/O error, dev loop1, sector 5300224 -[2996033.988545] print_req_error: I/O error, dev loop1, sector 5300232 -[2996033.990619] print_req_error: I/O error, dev loop1, sector 85888 -[2996033.990746] print_req_error: I/O error, dev loop1, sector 86000 -[2996033.990818] print_req_error: I/O error, dev loop1, sector 20480 -[2996033.990963] print_req_error: I/O error, dev loop1, sector 20488 -[2996034.043058] print_req_error: I/O error, dev loop1, sector 5300096 -[2996034.043221] print_req_error: I/O error, dev loop1, sector 5300208 -[2996088.856635] print_req_error: 54 callbacks suppressed -[2996088.856637] print_req_error: I/O error, dev loop1, sector 9494400 -[2996088.856790] print_req_error: I/O error, dev loop1, sector 9494616 -[2996088.856854] print_req_error: I/O error, dev loop1, sector 5300224 -[2996088.856951] print_req_error: I/O error, dev loop1, sector 5300232 -[2996088.858696] print_req_error: I/O error, dev loop1, sector 85888 -[2996088.858798] print_req_error: I/O error, dev loop1, sector 86000 -[2996088.858912] print_req_error: I/O error, dev loop1, sector 20480 -[2996088.859053] print_req_error: I/O error, dev loop1, sector 20488 -[2996088.864200] print_req_error: I/O error, dev loop1, sector 5300096 -[2996088.864284] print_req_error: I/O error, dev loop1, sector 5300208 -[3017643.020541] print_req_error: 54 callbacks suppressed -[3017643.020542] print_req_error: I/O error, dev loop1, sector 9494400 -[3017643.020763] print_req_error: I/O error, dev loop1, sector 9494616 -[3017643.020832] print_req_error: I/O error, dev loop1, sector 5300224 -[3017643.020933] print_req_error: I/O error, dev loop1, sector 5300232 -[3017643.023060] print_req_error: I/O error, dev loop1, sector 85888 -[3017643.023197] print_req_error: I/O error, dev loop1, sector 86000 -[3017643.023270] print_req_error: I/O error, dev loop1, sector 20480 -[3017643.023419] print_req_error: I/O error, dev loop1, sector 20488 -[3017643.071245] print_req_error: I/O error, dev loop1, sector 5300096 -[3017643.071415] print_req_error: I/O error, dev loop1, sector 5300208 -[3017703.145099] print_req_error: 54 callbacks suppressed -[3017703.145101] print_req_error: I/O error, dev loop1, sector 9494400 -[3017703.145152] print_req_error: I/O error, dev loop1, sector 9494616 -[3017703.145186] print_req_error: I/O error, dev loop1, sector 5300224 -[3017703.145212] print_req_error: I/O error, dev loop1, sector 5300232 -[3017703.147404] print_req_error: I/O error, dev loop1, sector 85888 -[3017703.147446] print_req_error: I/O error, dev loop1, sector 86000 -[3017703.147475] print_req_error: I/O error, dev loop1, sector 20480 -[3017703.147501] print_req_error: I/O error, dev loop1, sector 20488 -[3017703.236316] print_req_error: I/O error, dev loop1, sector 5300096 -[3017703.236466] print_req_error: I/O error, dev loop1, sector 5300208 -[3039236.023366] print_req_error: 54 callbacks suppressed -[3039236.023367] print_req_error: I/O error, dev loop1, sector 9494400 -[3039236.023593] print_req_error: I/O error, dev loop1, sector 9494616 -[3039236.023665] print_req_error: I/O error, dev loop1, sector 5300224 -[3039236.023695] print_req_error: I/O error, dev loop1, sector 5300232 -[3039236.069107] print_req_error: I/O error, dev loop1, sector 85888 -[3039236.069268] print_req_error: I/O error, dev loop1, sector 86000 -[3039236.069363] print_req_error: I/O error, dev loop1, sector 20480 -[3039236.069522] print_req_error: I/O error, dev loop1, sector 20488 -[3039236.079332] print_req_error: I/O error, dev loop1, sector 5300096 -[3039236.079486] print_req_error: I/O error, dev loop1, sector 5300208 -[3039295.853058] print_req_error: 54 callbacks suppressed -[3039295.853060] print_req_error: I/O error, dev loop1, sector 9494400 -[3039295.853168] print_req_error: I/O error, dev loop1, sector 9494616 -[3039295.853226] print_req_error: I/O error, dev loop1, sector 5300224 -[3039295.853349] print_req_error: I/O error, dev loop1, sector 5300232 -[3039295.890612] print_req_error: I/O error, dev loop1, sector 85888 -[3039295.890767] print_req_error: I/O error, dev loop1, sector 86000 -[3039295.890836] print_req_error: I/O error, dev loop1, sector 20480 -[3039295.890920] print_req_error: I/O error, dev loop1, sector 20488 -[3039295.934533] print_req_error: I/O error, dev loop1, sector 5300096 -[3039295.934683] print_req_error: I/O error, dev loop1, sector 5300208 -[3060838.815272] print_req_error: 54 callbacks suppressed -[3060838.815273] print_req_error: I/O error, dev loop1, sector 9494400 -[3060838.815442] print_req_error: I/O error, dev loop1, sector 9494616 -[3060838.815516] print_req_error: I/O error, dev loop1, sector 5300224 -[3060838.815547] print_req_error: I/O error, dev loop1, sector 5300232 -[3060841.768061] print_req_error: I/O error, dev loop1, sector 85888 -[3060841.768225] print_req_error: I/O error, dev loop1, sector 86000 -[3060841.768315] print_req_error: I/O error, dev loop1, sector 20480 -[3060841.768491] print_req_error: I/O error, dev loop1, sector 20488 -[3060842.411262] print_req_error: I/O error, dev loop1, sector 5300096 -[3060842.411418] print_req_error: I/O error, dev loop1, sector 5300208 -[3060899.976945] print_req_error: 54 callbacks suppressed -[3060899.976946] print_req_error: I/O error, dev loop1, sector 9494400 -[3060899.977025] print_req_error: I/O error, dev loop1, sector 9494616 -[3060899.977059] print_req_error: I/O error, dev loop1, sector 5300224 -[3060899.977126] print_req_error: I/O error, dev loop1, sector 5300232 -[3060900.096652] print_req_error: I/O error, dev loop1, sector 85888 -[3060900.096809] print_req_error: I/O error, dev loop1, sector 86000 -[3060900.096951] print_req_error: I/O error, dev loop1, sector 20480 -[3060900.097041] print_req_error: I/O error, dev loop1, sector 20488 -[3060900.146757] print_req_error: I/O error, dev loop1, sector 5300096 -[3060900.146899] print_req_error: I/O error, dev loop1, sector 5300208 -[3082443.106383] print_req_error: 54 callbacks suppressed -[3082443.106384] print_req_error: I/O error, dev loop1, sector 9494400 -[3082443.106624] print_req_error: I/O error, dev loop1, sector 9494616 -[3082443.106675] print_req_error: I/O error, dev loop1, sector 5300224 -[3082443.106775] print_req_error: I/O error, dev loop1, sector 5300232 -[3082443.137001] print_req_error: I/O error, dev loop1, sector 85888 -[3082443.137142] print_req_error: I/O error, dev loop1, sector 86000 -[3082443.137226] print_req_error: I/O error, dev loop1, sector 20480 -[3082443.137362] print_req_error: I/O error, dev loop1, sector 20488 -[3082443.165586] print_req_error: I/O error, dev loop1, sector 5300096 -[3082443.165740] print_req_error: I/O error, dev loop1, sector 5300208 -[3082532.530318] print_req_error: 54 callbacks suppressed -[3082532.530320] print_req_error: I/O error, dev loop1, sector 9494400 -[3082532.530467] print_req_error: I/O error, dev loop1, sector 9494616 -[3082532.530524] print_req_error: I/O error, dev loop1, sector 5300224 -[3082532.530615] print_req_error: I/O error, dev loop1, sector 5300232 -[3082532.576196] print_req_error: I/O error, dev loop1, sector 85888 -[3082532.576332] print_req_error: I/O error, dev loop1, sector 86000 -[3082532.576466] print_req_error: I/O error, dev loop1, sector 20480 -[3082532.576605] print_req_error: I/O error, dev loop1, sector 20488 -[3082532.586767] print_req_error: I/O error, dev loop1, sector 5300096 -[3082532.586859] print_req_error: I/O error, dev loop1, sector 5300208 -[3104039.311075] print_req_error: 54 callbacks suppressed -[3104039.311077] print_req_error: I/O error, dev loop1, sector 9494400 -[3104039.311310] print_req_error: I/O error, dev loop1, sector 9494616 -[3104039.311374] print_req_error: I/O error, dev loop1, sector 5300224 -[3104039.311472] print_req_error: I/O error, dev loop1, sector 5300232 -[3104039.371578] print_req_error: I/O error, dev loop1, sector 85888 -[3104039.371733] print_req_error: I/O error, dev loop1, sector 86000 -[3104039.371812] print_req_error: I/O error, dev loop1, sector 20480 -[3104039.371954] print_req_error: I/O error, dev loop1, sector 20488 -[3104039.382318] print_req_error: I/O error, dev loop1, sector 5300096 -[3104039.382479] print_req_error: I/O error, dev loop1, sector 5300208 -[3104096.896355] print_req_error: 54 callbacks suppressed -[3104096.896357] print_req_error: I/O error, dev loop1, sector 9494400 -[3104096.896446] print_req_error: I/O error, dev loop1, sector 9494616 -[3104096.896509] print_req_error: I/O error, dev loop1, sector 5300224 -[3104096.896549] print_req_error: I/O error, dev loop1, sector 5300232 -[3104096.948990] print_req_error: I/O error, dev loop1, sector 85888 -[3104096.949140] print_req_error: I/O error, dev loop1, sector 86000 -[3104096.949290] print_req_error: I/O error, dev loop1, sector 20480 -[3104096.949443] print_req_error: I/O error, dev loop1, sector 20488 -[3104096.959393] print_req_error: I/O error, dev loop1, sector 5300096 -[3104096.959539] print_req_error: I/O error, dev loop1, sector 5300208 -[3125636.865105] print_req_error: 54 callbacks suppressed -[3125636.865106] print_req_error: I/O error, dev loop1, sector 9494400 -[3125636.865313] print_req_error: I/O error, dev loop1, sector 9494616 -[3125636.865373] print_req_error: I/O error, dev loop1, sector 5300224 -[3125636.865509] print_req_error: I/O error, dev loop1, sector 5300232 -[3125636.923574] print_req_error: I/O error, dev loop1, sector 85888 -[3125636.923650] print_req_error: I/O error, dev loop1, sector 86000 -[3125636.923685] print_req_error: I/O error, dev loop1, sector 20480 -[3125636.923731] print_req_error: I/O error, dev loop1, sector 20488 -[3125636.934304] print_req_error: I/O error, dev loop1, sector 5300096 -[3125636.934374] print_req_error: I/O error, dev loop1, sector 5300208 -[3125692.305122] print_req_error: 54 callbacks suppressed -[3125692.305123] print_req_error: I/O error, dev loop1, sector 9494400 -[3125692.305231] print_req_error: I/O error, dev loop1, sector 9494616 -[3125692.305289] print_req_error: I/O error, dev loop1, sector 5300224 -[3125692.305400] print_req_error: I/O error, dev loop1, sector 5300232 -[3125692.394529] print_req_error: I/O error, dev loop1, sector 85888 -[3125692.394675] print_req_error: I/O error, dev loop1, sector 86000 -[3125692.394821] print_req_error: I/O error, dev loop1, sector 20480 -[3125692.394965] print_req_error: I/O error, dev loop1, sector 20488 -[3125692.421724] print_req_error: I/O error, dev loop1, sector 5300096 -[3125692.421867] print_req_error: I/O error, dev loop1, sector 5300208 -[3147235.729527] print_req_error: 54 callbacks suppressed -[3147235.729528] print_req_error: I/O error, dev loop1, sector 9494400 -[3147235.729767] print_req_error: I/O error, dev loop1, sector 9494616 -[3147235.729843] print_req_error: I/O error, dev loop1, sector 5300224 -[3147235.729952] print_req_error: I/O error, dev loop1, sector 5300232 -[3147235.779882] print_req_error: I/O error, dev loop1, sector 85888 -[3147235.780039] print_req_error: I/O error, dev loop1, sector 86000 -[3147235.780126] print_req_error: I/O error, dev loop1, sector 20480 -[3147235.780277] print_req_error: I/O error, dev loop1, sector 20488 -[3147235.790471] print_req_error: I/O error, dev loop1, sector 5300096 -[3147235.790629] print_req_error: I/O error, dev loop1, sector 5300208 -[3147295.513257] print_req_error: 54 callbacks suppressed -[3147295.513259] print_req_error: I/O error, dev loop1, sector 9494400 -[3147295.513342] print_req_error: I/O error, dev loop1, sector 9494616 -[3147295.513376] print_req_error: I/O error, dev loop1, sector 5300224 -[3147295.513444] print_req_error: I/O error, dev loop1, sector 5300232 -[3147295.680616] print_req_error: I/O error, dev loop1, sector 85888 -[3147295.680774] print_req_error: I/O error, dev loop1, sector 86000 -[3147295.680930] print_req_error: I/O error, dev loop1, sector 20480 -[3147295.681012] print_req_error: I/O error, dev loop1, sector 20488 -[3147295.738432] print_req_error: I/O error, dev loop1, sector 5300096 -[3147295.738577] print_req_error: I/O error, dev loop1, sector 5300208 -[3168835.116700] print_req_error: 54 callbacks suppressed -[3168835.116701] print_req_error: I/O error, dev loop1, sector 9494400 -[3168835.116966] print_req_error: I/O error, dev loop1, sector 9494616 -[3168835.117037] print_req_error: I/O error, dev loop1, sector 5300224 -[3168835.117134] print_req_error: I/O error, dev loop1, sector 5300232 -[3168835.178088] print_req_error: I/O error, dev loop1, sector 85888 -[3168835.178251] print_req_error: I/O error, dev loop1, sector 86000 -[3168835.178340] print_req_error: I/O error, dev loop1, sector 20480 -[3168835.178488] print_req_error: I/O error, dev loop1, sector 20488 -[3168835.188297] print_req_error: I/O error, dev loop1, sector 5300096 -[3168835.188457] print_req_error: I/O error, dev loop1, sector 5300208 -[3168891.869300] print_req_error: 54 callbacks suppressed -[3168891.869302] print_req_error: I/O error, dev loop1, sector 9494400 -[3168891.869397] print_req_error: I/O error, dev loop1, sector 9494616 -[3168891.869426] print_req_error: I/O error, dev loop1, sector 5300224 -[3168891.869477] print_req_error: I/O error, dev loop1, sector 5300232 -[3168891.921766] print_req_error: I/O error, dev loop1, sector 85888 -[3168891.921900] print_req_error: I/O error, dev loop1, sector 86000 -[3168891.922033] print_req_error: I/O error, dev loop1, sector 20480 -[3168891.922202] print_req_error: I/O error, dev loop1, sector 20488 -[3168891.932414] print_req_error: I/O error, dev loop1, sector 5300096 -[3168891.932579] print_req_error: I/O error, dev loop1, sector 5300208 -[3190434.647128] print_req_error: 54 callbacks suppressed -[3190434.647130] print_req_error: I/O error, dev loop1, sector 9494400 -[3190434.647402] print_req_error: I/O error, dev loop1, sector 9494616 -[3190434.647479] print_req_error: I/O error, dev loop1, sector 5300224 -[3190434.647616] print_req_error: I/O error, dev loop1, sector 5300232 -[3190434.706983] print_req_error: I/O error, dev loop1, sector 85888 -[3190434.707148] print_req_error: I/O error, dev loop1, sector 86000 -[3190434.707236] print_req_error: I/O error, dev loop1, sector 20480 -[3190434.707389] print_req_error: I/O error, dev loop1, sector 20488 -[3190434.717429] print_req_error: I/O error, dev loop1, sector 5300096 -[3190434.717596] print_req_error: I/O error, dev loop1, sector 5300208 -[3190493.793657] print_req_error: 54 callbacks suppressed -[3190493.793658] print_req_error: I/O error, dev loop1, sector 9494400 -[3190493.793764] print_req_error: I/O error, dev loop1, sector 9494616 -[3190493.793822] print_req_error: I/O error, dev loop1, sector 5300224 -[3190493.793861] print_req_error: I/O error, dev loop1, sector 5300232 -[3190493.828428] print_req_error: I/O error, dev loop1, sector 85888 -[3190493.828571] print_req_error: I/O error, dev loop1, sector 86000 -[3190493.828649] print_req_error: I/O error, dev loop1, sector 20480 -[3190493.828792] print_req_error: I/O error, dev loop1, sector 20488 -[3190493.872480] print_req_error: I/O error, dev loop1, sector 5300096 -[3190493.872616] print_req_error: I/O error, dev loop1, sector 5300208 -[3212038.731204] print_req_error: 54 callbacks suppressed -[3212038.731206] print_req_error: I/O error, dev loop1, sector 9494400 -[3212038.731479] print_req_error: I/O error, dev loop1, sector 9494616 -[3212038.731563] print_req_error: I/O error, dev loop1, sector 5300224 -[3212038.731695] print_req_error: I/O error, dev loop1, sector 5300232 -[3212038.793278] print_req_error: I/O error, dev loop1, sector 85888 -[3212038.793420] print_req_error: I/O error, dev loop1, sector 86000 -[3212038.793561] print_req_error: I/O error, dev loop1, sector 20480 -[3212038.793709] print_req_error: I/O error, dev loop1, sector 20488 -[3212038.803782] print_req_error: I/O error, dev loop1, sector 5300096 -[3212038.803924] print_req_error: I/O error, dev loop1, sector 5300208 -[3212096.443414] print_req_error: 54 callbacks suppressed -[3212096.443416] print_req_error: I/O error, dev loop1, sector 9494400 -[3212096.443548] print_req_error: I/O error, dev loop1, sector 9494616 -[3212096.443648] print_req_error: I/O error, dev loop1, sector 5300224 -[3212096.443706] print_req_error: I/O error, dev loop1, sector 5300232 -[3212096.492853] print_req_error: I/O error, dev loop1, sector 85888 -[3212096.492995] print_req_error: I/O error, dev loop1, sector 86000 -[3212096.493135] print_req_error: I/O error, dev loop1, sector 20480 -[3212096.493274] print_req_error: I/O error, dev loop1, sector 20488 -[3212096.503336] print_req_error: I/O error, dev loop1, sector 5300096 -[3212096.503478] print_req_error: I/O error, dev loop1, sector 5300208 -[3233640.342726] print_req_error: 54 callbacks suppressed -[3233640.342728] print_req_error: I/O error, dev loop1, sector 9494400 -[3233640.342956] print_req_error: I/O error, dev loop1, sector 9494616 -[3233640.343021] print_req_error: I/O error, dev loop1, sector 5300224 -[3233640.343150] print_req_error: I/O error, dev loop1, sector 5300232 -[3233640.518237] print_req_error: I/O error, dev loop1, sector 85888 -[3233640.518422] print_req_error: I/O error, dev loop1, sector 86000 -[3233640.518568] print_req_error: I/O error, dev loop1, sector 20480 -[3233640.518812] print_req_error: I/O error, dev loop1, sector 20488 -[3233640.605979] print_req_error: I/O error, dev loop1, sector 5300096 -[3233640.606127] print_req_error: I/O error, dev loop1, sector 5300208 -[3233698.158090] print_req_error: 54 callbacks suppressed -[3233698.158091] print_req_error: I/O error, dev loop1, sector 9494400 -[3233698.158176] print_req_error: I/O error, dev loop1, sector 9494616 -[3233698.158209] print_req_error: I/O error, dev loop1, sector 5300224 -[3233698.158277] print_req_error: I/O error, dev loop1, sector 5300232 -[3233698.173031] print_req_error: I/O error, dev loop1, sector 85888 -[3233698.173177] print_req_error: I/O error, dev loop1, sector 86000 -[3233698.173225] print_req_error: I/O error, dev loop1, sector 20480 -[3233698.173369] print_req_error: I/O error, dev loop1, sector 20488 -[3233698.178751] print_req_error: I/O error, dev loop1, sector 5300096 -[3233698.178856] print_req_error: I/O error, dev loop1, sector 5300208 -[3255236.883197] print_req_error: 54 callbacks suppressed -[3255236.883198] print_req_error: I/O error, dev loop1, sector 9494400 -[3255236.883439] print_req_error: I/O error, dev loop1, sector 9494616 -[3255236.883506] print_req_error: I/O error, dev loop1, sector 5300224 -[3255236.883637] print_req_error: I/O error, dev loop1, sector 5300232 -[3255236.928203] print_req_error: I/O error, dev loop1, sector 85888 -[3255236.928306] print_req_error: I/O error, dev loop1, sector 86000 -[3255236.928385] print_req_error: I/O error, dev loop1, sector 20480 -[3255236.928541] print_req_error: I/O error, dev loop1, sector 20488 -[3255236.938857] print_req_error: I/O error, dev loop1, sector 5300096 -[3255236.939005] print_req_error: I/O error, dev loop1, sector 5300208 -[3255296.185782] print_req_error: 54 callbacks suppressed -[3255296.185784] print_req_error: I/O error, dev loop1, sector 9494400 -[3255296.185944] print_req_error: I/O error, dev loop1, sector 9494616 -[3255296.186017] print_req_error: I/O error, dev loop1, sector 5300224 -[3255296.186151] print_req_error: I/O error, dev loop1, sector 5300232 -[3255296.250069] print_req_error: I/O error, dev loop1, sector 85888 -[3255296.250211] print_req_error: I/O error, dev loop1, sector 86000 -[3255296.250305] print_req_error: I/O error, dev loop1, sector 20480 -[3255296.250457] print_req_error: I/O error, dev loop1, sector 20488 -[3255296.260370] print_req_error: I/O error, dev loop1, sector 5300096 -[3255296.260534] print_req_error: I/O error, dev loop1, sector 5300208 -[3276838.471936] print_req_error: 54 callbacks suppressed -[3276838.471939] print_req_error: I/O error, dev loop1, sector 9494400 -[3276838.472171] print_req_error: I/O error, dev loop1, sector 9494616 -[3276838.472304] print_req_error: I/O error, dev loop1, sector 5300224 -[3276838.472437] print_req_error: I/O error, dev loop1, sector 5300232 -[3276838.740978] print_req_error: I/O error, dev loop1, sector 85888 -[3276838.741133] print_req_error: I/O error, dev loop1, sector 86000 -[3276838.741274] print_req_error: I/O error, dev loop1, sector 20480 -[3276838.741426] print_req_error: I/O error, dev loop1, sector 20488 -[3276838.906653] print_req_error: I/O error, dev loop1, sector 5300096 -[3276838.906795] print_req_error: I/O error, dev loop1, sector 5300208 -[3276899.295988] print_req_error: 54 callbacks suppressed -[3276899.295989] print_req_error: I/O error, dev loop1, sector 9494400 -[3276899.296131] print_req_error: I/O error, dev loop1, sector 9494616 -[3276899.296186] print_req_error: I/O error, dev loop1, sector 5300224 -[3276899.296273] print_req_error: I/O error, dev loop1, sector 5300232 -[3276899.329767] print_req_error: I/O error, dev loop1, sector 85888 -[3276899.329935] print_req_error: I/O error, dev loop1, sector 86000 -[3276899.330056] print_req_error: I/O error, dev loop1, sector 20480 -[3276899.330176] print_req_error: I/O error, dev loop1, sector 20488 -[3276899.373966] print_req_error: I/O error, dev loop1, sector 5300096 -[3276899.374116] print_req_error: I/O error, dev loop1, sector 5300208 -[3298435.022426] print_req_error: 54 callbacks suppressed -[3298435.022428] print_req_error: I/O error, dev loop1, sector 9494400 -[3298435.022607] print_req_error: I/O error, dev loop1, sector 9494616 -[3298435.022667] print_req_error: I/O error, dev loop1, sector 5300224 -[3298435.022696] print_req_error: I/O error, dev loop1, sector 5300232 -[3298435.318796] print_req_error: I/O error, dev loop1, sector 85888 -[3298435.318917] print_req_error: I/O error, dev loop1, sector 86000 -[3298435.319035] print_req_error: I/O error, dev loop1, sector 20480 -[3298435.319149] print_req_error: I/O error, dev loop1, sector 20488 -[3298435.535494] print_req_error: I/O error, dev loop1, sector 5300096 -[3298435.535815] print_req_error: I/O error, dev loop1, sector 5300208 -[3298491.816365] print_req_error: 54 callbacks suppressed -[3298491.816367] print_req_error: I/O error, dev loop1, sector 9494400 -[3298491.816450] print_req_error: I/O error, dev loop1, sector 9494616 -[3298491.816483] print_req_error: I/O error, dev loop1, sector 5300224 -[3298491.816550] print_req_error: I/O error, dev loop1, sector 5300232 -[3298491.916821] print_req_error: I/O error, dev loop1, sector 85888 -[3298491.916964] print_req_error: I/O error, dev loop1, sector 86000 -[3298491.917099] print_req_error: I/O error, dev loop1, sector 20480 -[3298491.917247] print_req_error: I/O error, dev loop1, sector 20488 -[3298491.936057] print_req_error: I/O error, dev loop1, sector 5300096 -[3298491.936199] print_req_error: I/O error, dev loop1, sector 5300208 -[3320038.084433] print_req_error: 54 callbacks suppressed -[3320038.084435] print_req_error: I/O error, dev loop1, sector 9494400 -[3320038.084655] print_req_error: I/O error, dev loop1, sector 9494616 -[3320038.084722] print_req_error: I/O error, dev loop1, sector 5300224 -[3320038.084869] print_req_error: I/O error, dev loop1, sector 5300232 -[3320038.211777] print_req_error: I/O error, dev loop1, sector 85888 -[3320038.211900] print_req_error: I/O error, dev loop1, sector 86000 -[3320038.212037] print_req_error: I/O error, dev loop1, sector 20480 -[3320038.212190] print_req_error: I/O error, dev loop1, sector 20488 -[3320038.314908] print_req_error: I/O error, dev loop1, sector 5300096 -[3320038.315029] print_req_error: I/O error, dev loop1, sector 5300208 -[3320096.933509] print_req_error: 54 callbacks suppressed -[3320096.933511] print_req_error: I/O error, dev loop1, sector 9494400 -[3320096.933668] print_req_error: I/O error, dev loop1, sector 9494616 -[3320096.933788] print_req_error: I/O error, dev loop1, sector 5300224 -[3320096.933900] print_req_error: I/O error, dev loop1, sector 5300232 -[3320096.935818] print_req_error: I/O error, dev loop1, sector 85888 -[3320096.935959] print_req_error: I/O error, dev loop1, sector 86000 -[3320096.936038] print_req_error: I/O error, dev loop1, sector 20480 -[3320096.936174] print_req_error: I/O error, dev loop1, sector 20488 -[3320096.937383] print_req_error: I/O error, dev loop1, sector 5300096 -[3320096.937483] print_req_error: I/O error, dev loop1, sector 5300208 -[3341636.090522] print_req_error: 54 callbacks suppressed -[3341636.090524] print_req_error: I/O error, dev loop1, sector 9494400 -[3341636.090771] print_req_error: I/O error, dev loop1, sector 9494616 -[3341636.090837] print_req_error: I/O error, dev loop1, sector 5300224 -[3341636.090868] print_req_error: I/O error, dev loop1, sector 5300232 -[3341636.133664] print_req_error: I/O error, dev loop1, sector 85888 -[3341636.133794] print_req_error: I/O error, dev loop1, sector 86000 -[3341636.133862] print_req_error: I/O error, dev loop1, sector 20480 -[3341636.133979] print_req_error: I/O error, dev loop1, sector 20488 -[3341636.177474] print_req_error: I/O error, dev loop1, sector 5300096 -[3341636.177627] print_req_error: I/O error, dev loop1, sector 5300208 -[3341691.579292] print_req_error: 54 callbacks suppressed -[3341691.579293] print_req_error: I/O error, dev loop1, sector 9494400 -[3341691.579438] print_req_error: I/O error, dev loop1, sector 9494616 -[3341691.579499] print_req_error: I/O error, dev loop1, sector 5300224 -[3341691.579583] print_req_error: I/O error, dev loop1, sector 5300232 -[3341691.632909] print_req_error: I/O error, dev loop1, sector 85888 -[3341691.633053] print_req_error: I/O error, dev loop1, sector 86000 -[3341691.633157] print_req_error: I/O error, dev loop1, sector 20480 -[3341691.633306] print_req_error: I/O error, dev loop1, sector 20488 -[3341691.643725] print_req_error: I/O error, dev loop1, sector 5300096 -[3341691.643874] print_req_error: I/O error, dev loop1, sector 5300208 -[3363235.730879] print_req_error: 54 callbacks suppressed -[3363235.730881] print_req_error: I/O error, dev loop1, sector 9494400 -[3363235.731116] print_req_error: I/O error, dev loop1, sector 9494616 -[3363235.731181] print_req_error: I/O error, dev loop1, sector 5300224 -[3363235.731312] print_req_error: I/O error, dev loop1, sector 5300232 -[3363235.788840] print_req_error: I/O error, dev loop1, sector 85888 -[3363235.788996] print_req_error: I/O error, dev loop1, sector 86000 -[3363235.789108] print_req_error: I/O error, dev loop1, sector 20480 -[3363235.789210] print_req_error: I/O error, dev loop1, sector 20488 -[3363235.799471] print_req_error: I/O error, dev loop1, sector 5300096 -[3363235.799626] print_req_error: I/O error, dev loop1, sector 5300208 -[3363293.446109] print_req_error: 54 callbacks suppressed -[3363293.446111] print_req_error: I/O error, dev loop1, sector 9494400 -[3363293.446236] print_req_error: I/O error, dev loop1, sector 9494616 -[3363293.446300] print_req_error: I/O error, dev loop1, sector 5300224 -[3363293.446425] print_req_error: I/O error, dev loop1, sector 5300232 -[3363293.488553] print_req_error: I/O error, dev loop1, sector 85888 -[3363293.488691] print_req_error: I/O error, dev loop1, sector 86000 -[3363293.488766] print_req_error: I/O error, dev loop1, sector 20480 -[3363293.488838] print_req_error: I/O error, dev loop1, sector 20488 -[3363293.499132] print_req_error: I/O error, dev loop1, sector 5300096 -[3363293.499278] print_req_error: I/O error, dev loop1, sector 5300208 -[3384836.693947] print_req_error: 54 callbacks suppressed -[3384836.693949] print_req_error: I/O error, dev loop1, sector 9494400 -[3384836.694167] print_req_error: I/O error, dev loop1, sector 9494616 -[3384836.694233] print_req_error: I/O error, dev loop1, sector 5300224 -[3384836.694262] print_req_error: I/O error, dev loop1, sector 5300232 -[3384836.732692] print_req_error: I/O error, dev loop1, sector 85888 -[3384836.732846] print_req_error: I/O error, dev loop1, sector 86000 -[3384836.732929] print_req_error: I/O error, dev loop1, sector 20480 -[3384836.733092] print_req_error: I/O error, dev loop1, sector 20488 -[3384836.776373] print_req_error: I/O error, dev loop1, sector 5300096 -[3384836.776519] print_req_error: I/O error, dev loop1, sector 5300208 -[3384895.482130] print_req_error: 54 callbacks suppressed -[3384895.482131] print_req_error: I/O error, dev loop1, sector 9494400 -[3384895.482228] print_req_error: I/O error, dev loop1, sector 9494616 -[3384895.482336] print_req_error: I/O error, dev loop1, sector 5300224 -[3384895.482425] print_req_error: I/O error, dev loop1, sector 5300232 -[3384895.543162] print_req_error: I/O error, dev loop1, sector 85888 -[3384895.543316] print_req_error: I/O error, dev loop1, sector 86000 -[3384895.543398] print_req_error: I/O error, dev loop1, sector 20480 -[3384895.543544] print_req_error: I/O error, dev loop1, sector 20488 -[3384895.574684] print_req_error: I/O error, dev loop1, sector 5300096 -[3384895.574822] print_req_error: I/O error, dev loop1, sector 5300208 -[3406435.132607] print_req_error: 54 callbacks suppressed -[3406435.132609] print_req_error: I/O error, dev loop1, sector 9494400 -[3406435.132828] print_req_error: I/O error, dev loop1, sector 9494616 -[3406435.132888] print_req_error: I/O error, dev loop1, sector 5300224 -[3406435.132979] print_req_error: I/O error, dev loop1, sector 5300232 -[3406435.180273] print_req_error: I/O error, dev loop1, sector 85888 -[3406435.180447] print_req_error: I/O error, dev loop1, sector 86000 -[3406435.180530] print_req_error: I/O error, dev loop1, sector 20480 -[3406435.180675] print_req_error: I/O error, dev loop1, sector 20488 -[3406435.190406] print_req_error: I/O error, dev loop1, sector 5300096 -[3406435.190556] print_req_error: I/O error, dev loop1, sector 5300208 -[3406492.282656] print_req_error: 54 callbacks suppressed -[3406492.282658] print_req_error: I/O error, dev loop1, sector 9494400 -[3406492.282815] print_req_error: I/O error, dev loop1, sector 9494616 -[3406492.282879] print_req_error: I/O error, dev loop1, sector 5300224 -[3406492.282972] print_req_error: I/O error, dev loop1, sector 5300232 -[3406492.295191] print_req_error: I/O error, dev loop1, sector 85888 -[3406492.295259] print_req_error: I/O error, dev loop1, sector 86000 -[3406492.295321] print_req_error: I/O error, dev loop1, sector 20480 -[3406492.295350] print_req_error: I/O error, dev loop1, sector 20488 -[3406492.323633] print_req_error: I/O error, dev loop1, sector 5300096 -[3406492.323788] print_req_error: I/O error, dev loop1, sector 5300208 -[3428039.855980] print_req_error: 54 callbacks suppressed -[3428039.855982] print_req_error: I/O error, dev loop1, sector 9494400 -[3428039.856205] print_req_error: I/O error, dev loop1, sector 9494616 -[3428039.856271] print_req_error: I/O error, dev loop1, sector 5300224 -[3428039.856415] print_req_error: I/O error, dev loop1, sector 5300232 -[3428039.901772] print_req_error: I/O error, dev loop1, sector 85888 -[3428039.901925] print_req_error: I/O error, dev loop1, sector 86000 -[3428039.902023] print_req_error: I/O error, dev loop1, sector 20480 -[3428039.902164] print_req_error: I/O error, dev loop1, sector 20488 -[3428039.912366] print_req_error: I/O error, dev loop1, sector 5300096 -[3428039.912488] print_req_error: I/O error, dev loop1, sector 5300208 -[3428098.758644] print_req_error: 54 callbacks suppressed -[3428098.758646] print_req_error: I/O error, dev loop1, sector 9494400 -[3428098.758791] print_req_error: I/O error, dev loop1, sector 9494616 -[3428098.758847] print_req_error: I/O error, dev loop1, sector 5300224 -[3428098.758935] print_req_error: I/O error, dev loop1, sector 5300232 -[3428098.783757] print_req_error: I/O error, dev loop1, sector 85888 -[3428098.783943] print_req_error: I/O error, dev loop1, sector 86000 -[3428098.784045] print_req_error: I/O error, dev loop1, sector 20480 -[3428098.784234] print_req_error: I/O error, dev loop1, sector 20488 -[3428098.789716] print_req_error: I/O error, dev loop1, sector 5300096 -[3428098.789834] print_req_error: I/O error, dev loop1, sector 5300208 -[3449636.264452] print_req_error: 54 callbacks suppressed -[3449636.264453] print_req_error: I/O error, dev loop1, sector 9494400 -[3449636.264702] print_req_error: I/O error, dev loop1, sector 9494616 -[3449636.264779] print_req_error: I/O error, dev loop1, sector 5300224 -[3449636.264912] print_req_error: I/O error, dev loop1, sector 5300232 -[3449636.313883] print_req_error: I/O error, dev loop1, sector 85888 -[3449636.314044] print_req_error: I/O error, dev loop1, sector 86000 -[3449636.314136] print_req_error: I/O error, dev loop1, sector 20480 -[3449636.314284] print_req_error: I/O error, dev loop1, sector 20488 -[3449636.324257] print_req_error: I/O error, dev loop1, sector 5300096 -[3449636.324418] print_req_error: I/O error, dev loop1, sector 5300208 -[3449696.828170] print_req_error: 54 callbacks suppressed -[3449696.828172] print_req_error: I/O error, dev loop1, sector 9494400 -[3449696.828299] print_req_error: I/O error, dev loop1, sector 9494616 -[3449696.828362] print_req_error: I/O error, dev loop1, sector 5300224 -[3449696.828486] print_req_error: I/O error, dev loop1, sector 5300232 -[3449696.851511] print_req_error: I/O error, dev loop1, sector 85888 -[3449696.851634] print_req_error: I/O error, dev loop1, sector 86000 -[3449696.851809] print_req_error: I/O error, dev loop1, sector 20480 -[3449696.851943] print_req_error: I/O error, dev loop1, sector 20488 -[3449696.856902] print_req_error: I/O error, dev loop1, sector 5300096 -[3449696.857046] print_req_error: I/O error, dev loop1, sector 5300208 -[3471234.099525] print_req_error: 54 callbacks suppressed -[3471234.099526] print_req_error: I/O error, dev loop1, sector 9494400 -[3471234.099700] print_req_error: I/O error, dev loop1, sector 9494616 -[3471234.099763] print_req_error: I/O error, dev loop1, sector 5300224 -[3471234.099793] print_req_error: I/O error, dev loop1, sector 5300232 -[3471234.146698] print_req_error: I/O error, dev loop1, sector 85888 -[3471234.146887] print_req_error: I/O error, dev loop1, sector 86000 -[3471234.146984] print_req_error: I/O error, dev loop1, sector 20480 -[3471234.147138] print_req_error: I/O error, dev loop1, sector 20488 -[3471234.157523] print_req_error: I/O error, dev loop1, sector 5300096 -[3471234.157703] print_req_error: I/O error, dev loop1, sector 5300208 -[3471290.557099] print_req_error: 54 callbacks suppressed -[3471290.557101] print_req_error: I/O error, dev loop1, sector 9494400 -[3471290.557213] print_req_error: I/O error, dev loop1, sector 9494616 -[3471290.557273] print_req_error: I/O error, dev loop1, sector 5300224 -[3471290.557374] print_req_error: I/O error, dev loop1, sector 5300232 -[3471290.629285] print_req_error: I/O error, dev loop1, sector 85888 -[3471290.629452] print_req_error: I/O error, dev loop1, sector 86000 -[3471290.629535] print_req_error: I/O error, dev loop1, sector 20480 -[3471290.629694] print_req_error: I/O error, dev loop1, sector 20488 -[3471290.634437] print_req_error: I/O error, dev loop1, sector 5300096 -[3471290.634595] print_req_error: I/O error, dev loop1, sector 5300208 -[3492832.593738] print_req_error: 54 callbacks suppressed -[3492832.593739] print_req_error: I/O error, dev loop1, sector 9494400 -[3492832.593940] print_req_error: I/O error, dev loop1, sector 9494616 -[3492832.594005] print_req_error: I/O error, dev loop1, sector 5300224 -[3492832.594106] print_req_error: I/O error, dev loop1, sector 5300232 -[3492832.663214] print_req_error: I/O error, dev loop1, sector 85888 -[3492832.663368] print_req_error: I/O error, dev loop1, sector 86000 -[3492832.663502] print_req_error: I/O error, dev loop1, sector 20480 -[3492832.663662] print_req_error: I/O error, dev loop1, sector 20488 -[3492832.673451] print_req_error: I/O error, dev loop1, sector 5300096 -[3492832.673599] print_req_error: I/O error, dev loop1, sector 5300208 -[3492892.414411] print_req_error: 54 callbacks suppressed -[3492892.414412] print_req_error: I/O error, dev loop1, sector 9494400 -[3492892.414482] print_req_error: I/O error, dev loop1, sector 9494616 -[3492892.414515] print_req_error: I/O error, dev loop1, sector 5300224 -[3492892.414556] print_req_error: I/O error, dev loop1, sector 5300232 -[3492892.484869] print_req_error: I/O error, dev loop1, sector 85888 -[3492892.485048] print_req_error: I/O error, dev loop1, sector 86000 -[3492892.485121] print_req_error: I/O error, dev loop1, sector 20480 -[3492892.485183] print_req_error: I/O error, dev loop1, sector 20488 -[3492892.495398] print_req_error: I/O error, dev loop1, sector 5300096 -[3492892.495543] print_req_error: I/O error, dev loop1, sector 5300208 -[3513970.222026] linhelmk unloading -[3513970.372701] linhelmk exit done -[3514270.531959] linhelmk loaded -[3514270.531960] This linhelmk was built with the IMA EXPERIMENT! -[3514270.558456] helm_ima_bridge_init() succeeded - IMA experiment running. -[3514270.559585] message queue initialized in 1024 pages of shared memory -[3514270.559797] cdev created: /dev/helm -[3514270.594885] probe is now in state 1 (was 0) -[3514270.600443] probe <__x64_sys_execve> is now in state 1 (was 0) -[3514270.605802] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3514270.611368] probe is now in state 1 (was 0) -[3514270.616777] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3514270.622401] probe is now in state 1 (was 0) -[3514270.628037] probe is now in state 1 (was 0) -[3514270.633676] probe is now in state 1 (was 0) -[3514270.639159] probe is now in state 1 (was 0) -[3514270.644901] probe is now in state 1 (was 0) -[3514270.644903] nf_hook 12 is now in state 1 (was 0) -[3514270.644904] nf_hook 13 is now in state 1 (was 0) -[3514270.644905] nf_hook 14 is now in state 1 (was 0) -[3514270.644906] nf_hook 15 is now in state 1 (was 0) -[3514270.644906] /dev/helm created; linhelm init done -[3514436.029562] print_req_error: 54 callbacks suppressed -[3514436.029563] print_req_error: I/O error, dev loop1, sector 9494400 -[3514436.029758] print_req_error: I/O error, dev loop1, sector 9494616 -[3514436.029821] print_req_error: I/O error, dev loop1, sector 5300224 -[3514436.029922] print_req_error: I/O error, dev loop1, sector 5300232 -[3514436.077270] print_req_error: I/O error, dev loop1, sector 85888 -[3514436.077416] print_req_error: I/O error, dev loop1, sector 86000 -[3514436.077506] print_req_error: I/O error, dev loop1, sector 20480 -[3514436.077650] print_req_error: I/O error, dev loop1, sector 20488 -[3514436.087779] print_req_error: I/O error, dev loop1, sector 5300096 -[3514436.087934] print_req_error: I/O error, dev loop1, sector 5300208 -[3514494.640068] print_req_error: 54 callbacks suppressed -[3514494.640069] print_req_error: I/O error, dev loop1, sector 9494400 -[3514494.640187] print_req_error: I/O error, dev loop1, sector 9494616 -[3514494.640249] print_req_error: I/O error, dev loop1, sector 5300224 -[3514494.640345] print_req_error: I/O error, dev loop1, sector 5300232 -[3514494.659407] print_req_error: I/O error, dev loop1, sector 85888 -[3514494.659525] print_req_error: I/O error, dev loop1, sector 86000 -[3514494.659658] print_req_error: I/O error, dev loop1, sector 20480 -[3514494.659787] print_req_error: I/O error, dev loop1, sector 20488 -[3514494.664686] print_req_error: I/O error, dev loop1, sector 5300096 -[3514494.664800] print_req_error: I/O error, dev loop1, sector 5300208 -[3536034.474176] print_req_error: 54 callbacks suppressed -[3536034.474178] print_req_error: I/O error, dev loop1, sector 9494400 -[3536034.474426] print_req_error: I/O error, dev loop1, sector 9494616 -[3536034.474484] print_req_error: I/O error, dev loop1, sector 5300224 -[3536034.474625] print_req_error: I/O error, dev loop1, sector 5300232 -[3536034.512857] print_req_error: I/O error, dev loop1, sector 85888 -[3536034.513017] print_req_error: I/O error, dev loop1, sector 86000 -[3536034.513105] print_req_error: I/O error, dev loop1, sector 20480 -[3536034.513250] print_req_error: I/O error, dev loop1, sector 20488 -[3536034.523547] print_req_error: I/O error, dev loop1, sector 5300096 -[3536034.523667] print_req_error: I/O error, dev loop1, sector 5300208 -[3536093.383893] print_req_error: 54 callbacks suppressed -[3536093.383894] print_req_error: I/O error, dev loop1, sector 9494400 -[3536093.384044] print_req_error: I/O error, dev loop1, sector 9494616 -[3536093.384108] print_req_error: I/O error, dev loop1, sector 5300224 -[3536093.384234] print_req_error: I/O error, dev loop1, sector 5300232 -[3536093.394824] print_req_error: I/O error, dev loop1, sector 85888 -[3536093.394896] print_req_error: I/O error, dev loop1, sector 86000 -[3536093.394929] print_req_error: I/O error, dev loop1, sector 20480 -[3536093.395050] print_req_error: I/O error, dev loop1, sector 20488 -[3536093.400440] print_req_error: I/O error, dev loop1, sector 5300096 -[3536093.400539] print_req_error: I/O error, dev loop1, sector 5300208 -[3557632.921211] print_req_error: 54 callbacks suppressed -[3557632.921213] print_req_error: I/O error, dev loop1, sector 9494400 -[3557632.921440] print_req_error: I/O error, dev loop1, sector 9494616 -[3557632.921503] print_req_error: I/O error, dev loop1, sector 5300224 -[3557632.921542] print_req_error: I/O error, dev loop1, sector 5300232 -[3557632.966902] print_req_error: I/O error, dev loop1, sector 85888 -[3557632.967029] print_req_error: I/O error, dev loop1, sector 86000 -[3557632.967207] print_req_error: I/O error, dev loop1, sector 20480 -[3557632.967365] print_req_error: I/O error, dev loop1, sector 20488 -[3557632.977118] print_req_error: I/O error, dev loop1, sector 5300096 -[3557632.977246] print_req_error: I/O error, dev loop1, sector 5300208 -[3557693.281736] print_req_error: 54 callbacks suppressed -[3557693.281738] print_req_error: I/O error, dev loop1, sector 9494400 -[3557693.281866] print_req_error: I/O error, dev loop1, sector 9494616 -[3557693.281943] print_req_error: I/O error, dev loop1, sector 5300224 -[3557693.282047] print_req_error: I/O error, dev loop1, sector 5300232 -[3557693.304203] print_req_error: I/O error, dev loop1, sector 85888 -[3557693.304339] print_req_error: I/O error, dev loop1, sector 86000 -[3557693.304624] print_req_error: I/O error, dev loop1, sector 20480 -[3557693.304748] print_req_error: I/O error, dev loop1, sector 20488 -[3557693.309956] print_req_error: I/O error, dev loop1, sector 5300096 -[3557693.310112] print_req_error: I/O error, dev loop1, sector 5300208 -[3579235.121495] print_req_error: 54 callbacks suppressed -[3579235.121497] print_req_error: I/O error, dev loop1, sector 9494400 -[3579235.121730] print_req_error: I/O error, dev loop1, sector 9494616 -[3579235.121795] print_req_error: I/O error, dev loop1, sector 5300224 -[3579235.121916] print_req_error: I/O error, dev loop1, sector 5300232 -[3579235.168119] print_req_error: I/O error, dev loop1, sector 85888 -[3579235.168270] print_req_error: I/O error, dev loop1, sector 86000 -[3579235.168401] print_req_error: I/O error, dev loop1, sector 20480 -[3579235.168513] print_req_error: I/O error, dev loop1, sector 20488 -[3579235.178392] print_req_error: I/O error, dev loop1, sector 5300096 -[3579235.178542] print_req_error: I/O error, dev loop1, sector 5300208 -[3579293.642549] print_req_error: 54 callbacks suppressed -[3579293.642550] print_req_error: I/O error, dev loop1, sector 9494400 -[3579293.642639] print_req_error: I/O error, dev loop1, sector 9494616 -[3579293.642708] print_req_error: I/O error, dev loop1, sector 5300224 -[3579293.642807] print_req_error: I/O error, dev loop1, sector 5300232 -[3579293.689796] print_req_error: I/O error, dev loop1, sector 85888 -[3579293.689905] print_req_error: I/O error, dev loop1, sector 86000 -[3579293.690027] print_req_error: I/O error, dev loop1, sector 20480 -[3579293.690114] print_req_error: I/O error, dev loop1, sector 20488 -[3579293.733610] print_req_error: I/O error, dev loop1, sector 5300096 -[3579293.733762] print_req_error: I/O error, dev loop1, sector 5300208 -[3600832.981532] print_req_error: 54 callbacks suppressed -[3600832.981534] print_req_error: I/O error, dev loop1, sector 9494400 -[3600832.981787] print_req_error: I/O error, dev loop1, sector 9494616 -[3600832.981859] print_req_error: I/O error, dev loop1, sector 5300224 -[3600832.981966] print_req_error: I/O error, dev loop1, sector 5300232 -[3600833.083414] print_req_error: I/O error, dev loop1, sector 85888 -[3600833.083566] print_req_error: I/O error, dev loop1, sector 86000 -[3600833.083714] print_req_error: I/O error, dev loop1, sector 20480 -[3600833.083815] print_req_error: I/O error, dev loop1, sector 20488 -[3600833.128503] print_req_error: I/O error, dev loop1, sector 5300096 -[3600833.128654] print_req_error: I/O error, dev loop1, sector 5300208 -[3600891.505895] print_req_error: 54 callbacks suppressed -[3600891.505896] print_req_error: I/O error, dev loop1, sector 9494400 -[3600891.506029] print_req_error: I/O error, dev loop1, sector 9494616 -[3600891.506102] print_req_error: I/O error, dev loop1, sector 5300224 -[3600891.506204] print_req_error: I/O error, dev loop1, sector 5300232 -[3600891.507979] print_req_error: I/O error, dev loop1, sector 85888 -[3600891.508089] print_req_error: I/O error, dev loop1, sector 86000 -[3600891.508191] print_req_error: I/O error, dev loop1, sector 20480 -[3600891.508353] print_req_error: I/O error, dev loop1, sector 20488 -[3600891.529160] print_req_error: I/O error, dev loop1, sector 5300096 -[3600891.529301] print_req_error: I/O error, dev loop1, sector 5300208 -[3622433.355127] print_req_error: 54 callbacks suppressed -[3622433.355129] print_req_error: I/O error, dev loop1, sector 9494400 -[3622433.355353] print_req_error: I/O error, dev loop1, sector 9494616 -[3622433.355416] print_req_error: I/O error, dev loop1, sector 5300224 -[3622433.355511] print_req_error: I/O error, dev loop1, sector 5300232 -[3622433.402877] print_req_error: I/O error, dev loop1, sector 85888 -[3622433.403069] print_req_error: I/O error, dev loop1, sector 86000 -[3622433.403217] print_req_error: I/O error, dev loop1, sector 20480 -[3622433.403305] print_req_error: I/O error, dev loop1, sector 20488 -[3622433.446888] print_req_error: I/O error, dev loop1, sector 5300096 -[3622433.447077] print_req_error: I/O error, dev loop1, sector 5300208 -[3622490.137640] print_req_error: 54 callbacks suppressed -[3622490.137642] print_req_error: I/O error, dev loop1, sector 9494400 -[3622490.137730] print_req_error: I/O error, dev loop1, sector 9494616 -[3622490.137792] print_req_error: I/O error, dev loop1, sector 5300224 -[3622490.137893] print_req_error: I/O error, dev loop1, sector 5300232 -[3622490.191787] print_req_error: I/O error, dev loop1, sector 85888 -[3622490.191944] print_req_error: I/O error, dev loop1, sector 86000 -[3622490.192032] print_req_error: I/O error, dev loop1, sector 20480 -[3622490.192184] print_req_error: I/O error, dev loop1, sector 20488 -[3622490.202024] print_req_error: I/O error, dev loop1, sector 5300096 -[3622490.202178] print_req_error: I/O error, dev loop1, sector 5300208 -[3644033.091601] print_req_error: 54 callbacks suppressed -[3644033.091602] print_req_error: I/O error, dev loop1, sector 9494400 -[3644033.091848] print_req_error: I/O error, dev loop1, sector 9494616 -[3644033.091913] print_req_error: I/O error, dev loop1, sector 5300224 -[3644033.092042] print_req_error: I/O error, dev loop1, sector 5300232 -[3644033.131541] print_req_error: I/O error, dev loop1, sector 85888 -[3644033.131696] print_req_error: I/O error, dev loop1, sector 86000 -[3644033.131789] print_req_error: I/O error, dev loop1, sector 20480 -[3644033.131940] print_req_error: I/O error, dev loop1, sector 20488 -[3644033.141820] print_req_error: I/O error, dev loop1, sector 5300096 -[3644033.141974] print_req_error: I/O error, dev loop1, sector 5300208 -[3644091.041431] print_req_error: 54 callbacks suppressed -[3644091.041432] print_req_error: I/O error, dev loop1, sector 9494400 -[3644091.041593] print_req_error: I/O error, dev loop1, sector 9494616 -[3644091.041669] print_req_error: I/O error, dev loop1, sector 5300224 -[3644091.041778] print_req_error: I/O error, dev loop1, sector 5300232 -[3644091.068820] print_req_error: I/O error, dev loop1, sector 85888 -[3644091.068987] print_req_error: I/O error, dev loop1, sector 86000 -[3644091.069068] print_req_error: I/O error, dev loop1, sector 20480 -[3644091.069137] print_req_error: I/O error, dev loop1, sector 20488 -[3644091.074682] print_req_error: I/O error, dev loop1, sector 5300096 -[3644091.074825] print_req_error: I/O error, dev loop1, sector 5300208 -[3665632.897935] print_req_error: 54 callbacks suppressed -[3665632.897936] print_req_error: I/O error, dev loop1, sector 9494400 -[3665632.898163] print_req_error: I/O error, dev loop1, sector 9494616 -[3665632.898230] print_req_error: I/O error, dev loop1, sector 5300224 -[3665632.898339] print_req_error: I/O error, dev loop1, sector 5300232 -[3665632.950709] print_req_error: I/O error, dev loop1, sector 85888 -[3665632.950857] print_req_error: I/O error, dev loop1, sector 86000 -[3665632.951006] print_req_error: I/O error, dev loop1, sector 20480 -[3665632.951148] print_req_error: I/O error, dev loop1, sector 20488 -[3665632.961268] print_req_error: I/O error, dev loop1, sector 5300096 -[3665632.961426] print_req_error: I/O error, dev loop1, sector 5300208 -[3665690.294882] print_req_error: 54 callbacks suppressed -[3665690.294884] print_req_error: I/O error, dev loop1, sector 9494400 -[3665690.294991] print_req_error: I/O error, dev loop1, sector 9494616 -[3665690.295047] print_req_error: I/O error, dev loop1, sector 5300224 -[3665690.295173] print_req_error: I/O error, dev loop1, sector 5300232 -[3665690.540402] print_req_error: I/O error, dev loop1, sector 85888 -[3665690.540544] print_req_error: I/O error, dev loop1, sector 86000 -[3665690.540630] print_req_error: I/O error, dev loop1, sector 20480 -[3665690.540771] print_req_error: I/O error, dev loop1, sector 20488 -[3665690.838535] print_req_error: I/O error, dev loop1, sector 5300096 -[3665690.838680] print_req_error: I/O error, dev loop1, sector 5300208 -[3687234.093014] print_req_error: 54 callbacks suppressed -[3687234.093016] print_req_error: I/O error, dev loop1, sector 9494400 -[3687234.093226] print_req_error: I/O error, dev loop1, sector 9494616 -[3687234.093295] print_req_error: I/O error, dev loop1, sector 5300224 -[3687234.093422] print_req_error: I/O error, dev loop1, sector 5300232 -[3687234.132722] print_req_error: I/O error, dev loop1, sector 85888 -[3687234.132891] print_req_error: I/O error, dev loop1, sector 86000 -[3687234.132986] print_req_error: I/O error, dev loop1, sector 20480 -[3687234.133143] print_req_error: I/O error, dev loop1, sector 20488 -[3687234.143013] print_req_error: I/O error, dev loop1, sector 5300096 -[3687234.143181] print_req_error: I/O error, dev loop1, sector 5300208 -[3687295.446239] print_req_error: 54 callbacks suppressed -[3687295.446240] print_req_error: I/O error, dev loop1, sector 9494400 -[3687295.446396] print_req_error: I/O error, dev loop1, sector 9494616 -[3687295.446460] print_req_error: I/O error, dev loop1, sector 5300224 -[3687295.446586] print_req_error: I/O error, dev loop1, sector 5300232 -[3687295.487592] print_req_error: I/O error, dev loop1, sector 85888 -[3687295.487751] print_req_error: I/O error, dev loop1, sector 86000 -[3687295.487839] print_req_error: I/O error, dev loop1, sector 20480 -[3687295.487989] print_req_error: I/O error, dev loop1, sector 20488 -[3687295.531375] print_req_error: I/O error, dev loop1, sector 5300096 -[3687295.531525] print_req_error: I/O error, dev loop1, sector 5300208 -[3708827.921260] print_req_error: 54 callbacks suppressed -[3708827.921262] print_req_error: I/O error, dev loop1, sector 9494400 -[3708827.921465] print_req_error: I/O error, dev loop1, sector 9494616 -[3708827.921531] print_req_error: I/O error, dev loop1, sector 5300224 -[3708827.921660] print_req_error: I/O error, dev loop1, sector 5300232 -[3708828.282852] print_req_error: I/O error, dev loop1, sector 85888 -[3708828.283014] print_req_error: I/O error, dev loop1, sector 86000 -[3708828.283095] print_req_error: I/O error, dev loop1, sector 20480 -[3708828.283239] print_req_error: I/O error, dev loop1, sector 20488 -[3708828.326843] print_req_error: I/O error, dev loop1, sector 5300096 -[3708828.327000] print_req_error: I/O error, dev loop1, sector 5300208 -[3708886.186873] print_req_error: 54 callbacks suppressed -[3708886.186874] print_req_error: I/O error, dev loop1, sector 9494400 -[3708886.186989] print_req_error: I/O error, dev loop1, sector 9494616 -[3708886.187052] print_req_error: I/O error, dev loop1, sector 5300224 -[3708886.187176] print_req_error: I/O error, dev loop1, sector 5300232 -[3708886.211531] print_req_error: I/O error, dev loop1, sector 85888 -[3708886.211665] print_req_error: I/O error, dev loop1, sector 86000 -[3708886.211802] print_req_error: I/O error, dev loop1, sector 20480 -[3708886.211880] print_req_error: I/O error, dev loop1, sector 20488 -[3708886.247357] print_req_error: I/O error, dev loop1, sector 5300096 -[3708886.247504] print_req_error: I/O error, dev loop1, sector 5300208 -[3730428.594615] print_req_error: 54 callbacks suppressed -[3730428.594617] print_req_error: I/O error, dev loop1, sector 9494400 -[3730428.594808] print_req_error: I/O error, dev loop1, sector 9494616 -[3730428.594870] print_req_error: I/O error, dev loop1, sector 5300224 -[3730428.594900] print_req_error: I/O error, dev loop1, sector 5300232 -[3730428.633135] print_req_error: I/O error, dev loop1, sector 85888 -[3730428.633230] print_req_error: I/O error, dev loop1, sector 86000 -[3730428.633302] print_req_error: I/O error, dev loop1, sector 20480 -[3730428.633445] print_req_error: I/O error, dev loop1, sector 20488 -[3730428.643601] print_req_error: I/O error, dev loop1, sector 5300096 -[3730428.643752] print_req_error: I/O error, dev loop1, sector 5300208 -[3730487.381141] print_req_error: 54 callbacks suppressed -[3730487.381143] print_req_error: I/O error, dev loop1, sector 9494400 -[3730487.381268] print_req_error: I/O error, dev loop1, sector 9494616 -[3730487.381335] print_req_error: I/O error, dev loop1, sector 5300224 -[3730487.381433] print_req_error: I/O error, dev loop1, sector 5300232 -[3730487.392995] print_req_error: I/O error, dev loop1, sector 85888 -[3730487.393112] print_req_error: I/O error, dev loop1, sector 86000 -[3730487.393185] print_req_error: I/O error, dev loop1, sector 20480 -[3730487.393320] print_req_error: I/O error, dev loop1, sector 20488 -[3730487.398683] print_req_error: I/O error, dev loop1, sector 5300096 -[3730487.398821] print_req_error: I/O error, dev loop1, sector 5300208 -[3752030.490479] print_req_error: 54 callbacks suppressed -[3752030.490481] print_req_error: I/O error, dev loop1, sector 9494400 -[3752030.490701] print_req_error: I/O error, dev loop1, sector 9494616 -[3752030.490762] print_req_error: I/O error, dev loop1, sector 5300224 -[3752030.490866] print_req_error: I/O error, dev loop1, sector 5300232 -[3752030.551580] print_req_error: I/O error, dev loop1, sector 85888 -[3752030.551699] print_req_error: I/O error, dev loop1, sector 86000 -[3752030.551855] print_req_error: I/O error, dev loop1, sector 20480 -[3752030.551969] print_req_error: I/O error, dev loop1, sector 20488 -[3752030.562144] print_req_error: I/O error, dev loop1, sector 5300096 -[3752030.562314] print_req_error: I/O error, dev loop1, sector 5300208 -[3752087.874041] print_req_error: 54 callbacks suppressed -[3752087.874042] print_req_error: I/O error, dev loop1, sector 9494400 -[3752087.874153] print_req_error: I/O error, dev loop1, sector 9494616 -[3752087.874211] print_req_error: I/O error, dev loop1, sector 5300224 -[3752087.874273] print_req_error: I/O error, dev loop1, sector 5300232 -[3752087.917649] print_req_error: I/O error, dev loop1, sector 85888 -[3752087.917797] print_req_error: I/O error, dev loop1, sector 86000 -[3752087.917912] print_req_error: I/O error, dev loop1, sector 20480 -[3752087.918070] print_req_error: I/O error, dev loop1, sector 20488 -[3752087.928001] print_req_error: I/O error, dev loop1, sector 5300096 -[3752087.928138] print_req_error: I/O error, dev loop1, sector 5300208 -[3773631.568600] print_req_error: 54 callbacks suppressed -[3773631.568601] print_req_error: I/O error, dev loop1, sector 9494400 -[3773631.568855] print_req_error: I/O error, dev loop1, sector 9494616 -[3773631.569006] print_req_error: I/O error, dev loop1, sector 5300224 -[3773631.569137] print_req_error: I/O error, dev loop1, sector 5300232 -[3773631.615282] print_req_error: I/O error, dev loop1, sector 85888 -[3773631.615436] print_req_error: I/O error, dev loop1, sector 86000 -[3773631.615520] print_req_error: I/O error, dev loop1, sector 20480 -[3773631.615661] print_req_error: I/O error, dev loop1, sector 20488 -[3773631.625742] print_req_error: I/O error, dev loop1, sector 5300096 -[3773631.625895] print_req_error: I/O error, dev loop1, sector 5300208 -[3773688.292887] print_req_error: 54 callbacks suppressed -[3773688.292889] print_req_error: I/O error, dev loop1, sector 9494400 -[3773688.292993] print_req_error: I/O error, dev loop1, sector 9494616 -[3773688.293106] print_req_error: I/O error, dev loop1, sector 5300224 -[3773688.293215] print_req_error: I/O error, dev loop1, sector 5300232 -[3773688.308292] print_req_error: I/O error, dev loop1, sector 85888 -[3773688.308421] print_req_error: I/O error, dev loop1, sector 86000 -[3773688.308468] print_req_error: I/O error, dev loop1, sector 20480 -[3773688.308615] print_req_error: I/O error, dev loop1, sector 20488 -[3773688.313880] print_req_error: I/O error, dev loop1, sector 5300096 -[3773688.314006] print_req_error: I/O error, dev loop1, sector 5300208 -[3785021.622611] usb 4-1.1: USB disconnect, device number 16 -[3785021.622617] usb 4-1.1.4: USB disconnect, device number 17 -[3785021.623398] usb 4-1.1.5: USB disconnect, device number 18 -[3785125.274899] usb 4-1.1: new high-speed USB device number 30 using ehci-pci -[3785125.383360] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785125.383366] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785125.383988] hub 4-1.1:1.0: USB hub found -[3785125.384144] hub 4-1.1:1.0: 7 ports detected -[3785125.670859] usb 4-1.1.4: new high-speed USB device number 31 using ehci-pci -[3785125.784391] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785125.784397] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.784400] usb 4-1.1.4: Product: servo:810-10010-02 -[3785125.784403] usb 4-1.1.4: Manufacturer: Google Inc -[3785125.784406] usb 4-1.1.4: SerialNumber: 641220-00008 -[3785125.870812] usb 4-1.1.5: new high-speed USB device number 32 using ehci-pci -[3785125.992537] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785125.992543] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.992546] usb 4-1.1.5: Product: servo:810-10010-02 -[3785125.992549] usb 4-1.1.5: Manufacturer: Google Inc -[3785125.992552] usb 4-1.1.5: SerialNumber: 641220-00008 -[3785170.870778] usb 4-1.1: USB disconnect, device number 30 -[3785170.870784] usb 4-1.1.4: USB disconnect, device number 31 -[3785170.871509] usb 4-1.1.5: USB disconnect, device number 32 -[3785399.444401] usb 4-1.1: new high-speed USB device number 33 using ehci-pci -[3785399.552969] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785399.552975] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785399.553492] hub 4-1.1:1.0: USB hub found -[3785399.553713] hub 4-1.1:1.0: 7 ports detected -[3785399.844386] usb 4-1.1.4: new high-speed USB device number 34 using ehci-pci -[3785399.961854] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785399.961859] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785399.961863] usb 4-1.1.4: Product: servo:810-10010-02 -[3785399.961866] usb 4-1.1.4: Manufacturer: Google Inc -[3785399.961869] usb 4-1.1.4: SerialNumber: 686203-00054 -[3785400.052405] usb 4-1.1.5: new high-speed USB device number 35 using ehci-pci -[3785400.169888] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785400.169894] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785400.169897] usb 4-1.1.5: Product: servo:810-10010-02 -[3785400.169900] usb 4-1.1.5: Manufacturer: Google Inc -[3785400.169903] usb 4-1.1.5: SerialNumber: 686203-00054 -[3789440.536209] usb 2-2.3: USB disconnect, device number 6 -[3789487.590458] usb 2-2.3: new low-speed USB device number 7 using xhci_hcd -[3789487.699433] usb 2-2.3: New USB device found, idVendor=1a7c, idProduct=0195, bcdDevice= 3.10 -[3789487.699439] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3789487.699442] usb 2-2.3: Product: Evoluent VerticalMouse C -[3789487.699445] usb 2-2.3: Manufacturer: SONiX -[3789487.715234] input: SONiX Evoluent VerticalMouse C as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:1A7C:0195.0006/input/input18 -[3789487.715781] hid-generic 0003:1A7C:0195.0006: input,hidraw3: USB HID v1.00 Mouse [SONiX Evoluent VerticalMouse C] on usb-0000:08:00.0-2.3/input0 -[3795231.326042] print_req_error: 54 callbacks suppressed -[3795231.326044] print_req_error: I/O error, dev loop1, sector 9494400 -[3795231.326309] print_req_error: I/O error, dev loop1, sector 9494616 -[3795231.326377] print_req_error: I/O error, dev loop1, sector 5300224 -[3795231.326484] print_req_error: I/O error, dev loop1, sector 5300232 -[3795231.390354] print_req_error: I/O error, dev loop1, sector 85888 -[3795231.390514] print_req_error: I/O error, dev loop1, sector 86000 -[3795231.390611] print_req_error: I/O error, dev loop1, sector 20480 -[3795231.390755] print_req_error: I/O error, dev loop1, sector 20488 -[3795231.400824] print_req_error: I/O error, dev loop1, sector 5300096 -[3795231.400980] print_req_error: I/O error, dev loop1, sector 5300208 -[3795290.731079] print_req_error: 54 callbacks suppressed -[3795290.731081] print_req_error: I/O error, dev loop1, sector 9494400 -[3795290.731158] print_req_error: I/O error, dev loop1, sector 9494616 -[3795290.731226] print_req_error: I/O error, dev loop1, sector 5300224 -[3795290.731253] print_req_error: I/O error, dev loop1, sector 5300232 -[3795290.767720] print_req_error: I/O error, dev loop1, sector 85888 -[3795290.767890] print_req_error: I/O error, dev loop1, sector 86000 -[3795290.767997] print_req_error: I/O error, dev loop1, sector 20480 -[3795290.768132] print_req_error: I/O error, dev loop1, sector 20488 -[3795290.811384] print_req_error: I/O error, dev loop1, sector 5300096 -[3795290.811520] print_req_error: I/O error, dev loop1, sector 5300208 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mount -[?2004lsysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) -proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) -udev on /dev type devtmpfs (rw,nosuid,relatime,size=32916052k,nr_inodes=8229013,mode=755) -devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000) -tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=6595740k,mode=755) -securityfs on /sys/kernel/security type securityfs (rw,relatime) -/dev/mapper/dhcp--100--123--187--143--vg-root on / type ext4 (rw,relatime,errors=remount-ro,i_version) -tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev) -tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k) -tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755) -cgroup2 on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate) -cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd) -pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime) -bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700) -cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids) -cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct) -cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer) -cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio) -cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event) -cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset) -cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory) -cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio) -cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices) -systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1187) -mqueue on /dev/mqueue type mqueue (rw,relatime) -debugfs on /sys/kernel/debug type debugfs (rw,relatime) -sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime) -hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M) -/dev/sdb1 on /usr/local/src type ext4 (rw,relatime,data=ordered) -/dev/sda3 on /boot type ext2 (rw,relatime,block_validity,barrier,user_xattr,acl,i_version,stripe=4) -/dev/sdc1 on /usr/local/google type ext4 (rw,relatime,data=writeback) -/dev/sda2 on /boot/efi type vfat (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro) -binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime) -fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime) -/etc/auto.auto on /auto type autofs (rw,relatime,fd=7,pgrp=2509,timeout=300,minproto=5,maxproto=5,indirect,pipe_ino=41400) -/etc/auto.home on /home type autofs (rw,relatime,fd=13,pgrp=2509,timeout=300,minproto=5,maxproto=5,indirect,pipe_ino=48654) -tmpfs on /run/user/114 type tmpfs (rw,nosuid,nodev,relatime,size=6595736k,mode=700,uid=114,gid=120) -tmpfs on /run/user/156049 type tmpfs (rw,nosuid,nodev,relatime,size=6595736k,mode=700,uid=156049,gid=89939) -gvfsd-fuse on /run/user/156049/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=156049,group_id=89939) -cros on /sys/fs/cgroup/cpuset/cros type cgroup (rw,relatime,cpuset) -/dev/mapper/cros_usr+local+src+chromiumos+chroot_000-chroot on /usr/local/src/chromiumos/chroot type ext4 (rw,noatime,stripe=64) -srcfsd on /google/src type fuse.srcfsd (rw,nosuid,nodev,relatime,user_id=125,group_id=65534,default_permissions,allow_other) -binfs on /google/bin type fuse.binfs (rw,nosuid,nodev,relatime,user_id=156049,group_id=89939) -objfsd on /google/obj type fuse.objfsd (rw,nosuid,nodev,relatime,user_id=126,group_id=65534,default_permissions,allow_other) -x20fsd on /google/data type fuse.x20fsd (rw,nosuid,nodev,relatime,user_id=124,group_id=65534,allow_other) -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ l2019/01/03 13:07:15 Accepted &{{0xc00013e180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:09:21 Accepted &{{0xc00013e280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2019/01/03 13:09:21 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1 -2019/01/03 13:09:21 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 13:09:21 removed [0xc007b78500] -+ echo TEST /tmp/futk077126222/2 -TEST /tmp/futk077126222/2 -+ echo date -./DXECLEANER: line 5: /dev/ttyUSB1: Permission denied -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK -[?2004l -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mountdmesgbgmake d98./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -./DXECLEANER: line 5: /dev/ttyUSB1: Permission denied -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d rom211.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:11:31 Listening on 192.168.0.1:8080 at 2019-01-03 13:11:31.600020092 -0800 PST m=+0.005290149 -2019/01/03 13:14:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2019-01-03 13:14:31.600473929 -0800 PST m=+180.005743803 -2019/01/03 13:14:31 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:14:31 We are now done ...................... -2019/01/03 13:14:31 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fls -[?2004l98.splat config-4.13.0-rc7 fail.bin L NOTES rom211.rom uinit -bin.reset DIT futk.remove.99 linux removeBMCcrap.bin RUN3 x.bin -blacklist dxeclean.bin id_rsa.pub LIST removemorecrap.bin RUN4 xxx -commentmorecrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LOG removesetupcrap.bin RUN4.4.rom yyy -commentsetupcrap.bin EATIT ipmisucks.bin Makefile removesomecrap.bin tyan7102.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk 98.splat fv -[?2004l2019/01/03 13:15:36 Found 313 things -[313]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ furtk RUN4RUN4.4.rom fv - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:44:24 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2019-01-03 13:44:24.684082266 -0800 PST m=+320.401630498 -2019/01/03 13:44:24 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:44:24 We are now done ...................... -2019/01/03 13:44:24 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:44:24 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 13:44:24 removed [0xc00fff1500] -+ echo TEST /tmp/futk219719675/2 -TEST /tmp/futk219719675/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk219719675/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301 -2019/01/03 13:48:07 Accepted &{{0xc000142100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:50:13 Accepted &{{0xc000142200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2019/01/03 13:50:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaner R:saverom]}: file is /tmp/futk219719675/2 -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 13:50:13 removed [0xc000026180] -^Cinterrupt -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -m ssh -[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821 - - -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk219719675/ -[?2004l0 1 2 3 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ /tmpfutk more RUN4 -[?2004l[more RUN4]OK ^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ morvi RUN4 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"RUN4" [noeol] 11690L, 581632C▽ [>c]10;?]11;?Script started on 2018-12-20 12:38:28-0800 -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ make d4^M -^[[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean^M -2018/12/20 12:38:32 Found 310 things^M -2018/12/20 12:38:32 script is ./DXECLEANER^M -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8)^M -2018/12/20 12:38:42 removed [0xc000025200]^M -+ echo TEST /tmp/futk925337781/1^M -TEST /tmp/futk925337781/1^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r^M -[sudo] password for rminnich: ^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707^M -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 We are now done ......................^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6)^^M -2018/12/20 12:44:44 removed [0xc0084f8b00]^M -+ echo TEST /tmp/futk925337781/2^M -TEST /tmp/futk925337781/2^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M1,1Top]2;RUN4 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;RUN4[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lSent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -m tester^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2019/01/03 13:50:13 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443))^M -2019/01/03 13:50:13 removed [0xc000026180]^M -^Cinterrupt^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ./uinit -m ssh^M -^[[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^M -^M -^M -^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ls /tmp/fu^Gtk219719675/^M -^[[?2004l0 1 2 3^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ /tmp^H^H^H^H^[[Kfutk more RUN4^G^M -^[[?2004l[more RUN4]OK ^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ m11690,1Bot[?25h[?25l?[?2004h[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h [?25l11668,21 Bot[?25h[?25l90,1 [?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l[]5[?25h[?25l[] -[]4[?25h[?25l[] -[]3[?25h[?25l[]2[?25h[?25l1[?25h[?25l0[?25h[?25l69[?25h[?25l8[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h/[?25l[?25hp[?25l[?25h [?25l -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/2^M -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/5^M -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:clean -er R:saverom]}: file is /tmp/futk925337781/7^M -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/8^M -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9^M -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/10^M -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/11^M -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12^M -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/13^M -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/14^M -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16^M -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/19^M -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/20^M -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 m -ap[R:saverom r:cleaner]}: file is /tmp/futk925337781/21^M -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleane -rR:saverom]}: file is /tmp/futk925337781/23^M -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -HandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/25^M -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/26^M -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/27^M -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28^M -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/30^M -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/31^M -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/32^M -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor -Dxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/34^M -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/36^M -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41^M -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/43^M -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/44^M -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/45^M -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo -licy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/48^M -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r: -cleaner R:saverom]}: file is /tmp/futk925337781/50^M -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51^M --- More --[?25h[?25l2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/54^M -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:s -averom r:cleaner]}: file is /tmp/futk925337781/55^M -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/57^M -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/58^M -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma -p[R:saverom r:cleaner]}: file is /tmp/futk925337781/59^M -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/61^M -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/62^M -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[ -R:saverom r:cleaner]}: file is /tmp/futk925337781/64^M -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/66^M -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/68^M -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/69^M -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/70^M -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/72^M -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/73^M -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/74^M -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/75^M -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/76^M -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali -ze 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/79^M -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE -ntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/84^M -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86^M -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88^M -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/89^M -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90^M -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92^M -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R: -saverom r:cleaner]}: file is /tmp/futk925337781/93^M -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94^M -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/98^M -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99^M -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi -ghtningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL -ightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:sav -e-- More --[?25hrom r:cleaner]}: file is /tmp/futk925337781/103^M -[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/104^M -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105^M -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/108^M -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112^M -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/114^M -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe -tupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/117^M -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/119^M -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120^M -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/121^M -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122^M -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/124^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav -erom r:cleaner]}: file is /tmp/futk925337781/126^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk219719675/2^M -Press ENTER or type command to continue[?25h[?25lSent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -m tester^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2019/01/03 13:50:13 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443))^M -2019/01/03 13:50:13 removed [0xc000026180]^M -^Cinterrupt^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ./uinit -m ssh^M -^[[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^M -^M -^M -^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ls /tmp/fu^Gtk219719675/^M -^[[?2004l0 1 2 3^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ /tmp^H^H^H^H^[[Kfutk more RUN4^G^M -^[[?2004l[more RUN4]OK ^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ m11668,1Bot[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l90,1 [?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l[]5[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -There are stopped jobs. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lmake d98 -^Cinterrupt -^C^C^C -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK ^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ u -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -There are stopped jobs. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lmake d98 -^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ kill -09 9 %1 -[?2004l -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[1]+ Killed make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -Script done, file is RUN4 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi RUN54 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"RUN4" 12116L, 623524C▽ [>c]10;?]11;?Script started on 2018-12-20 12:38:28-0800 -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ make d4^M -^[[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean^M -2018/12/20 12:38:32 Found 310 things^M -2018/12/20 12:38:32 script is ./DXECLEANER^M -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8)^M -2018/12/20 12:38:42 removed [0xc000025200]^M -+ echo TEST /tmp/futk925337781/1^M -TEST /tmp/futk925337781/1^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r^M -[sudo] password for rminnich: ^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707^M -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 We are now done ......................^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6)^^M -2018/12/20 12:44:44 removed [0xc0084f8b00]^M -+ echo TEST /tmp/futk925337781/2^M -TEST /tmp/futk925337781/2^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M1,1Top]2;RUN4 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;RUN4[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2019/01/03 13:50:13 We are now done ......................^[[34m^M^[[m^M -+ echo 'ALL DONE'^[[34m^M^[[m^M -ALL DONE^[[34m^M^[[m^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443)))^[[51;1H^[[34m^M^[[m^M -2019/01/03 13:50:13 removed [0xc000026180]^[[34m^M^[[m^M -^Cinterrupt^[[34m^M^[[m^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[59;1Hards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[61;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[63;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[65;1Hbs/mainboards/tyan7102$ ./uinit -m ssh^[[34m^M^M -^[^[[m[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^[[34m^M^M -^M^M -^M^[[m^M -^C^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[71;1Hards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[73;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[75;1Hbs/mainboards/tyan7102$ ls /tmp/fu^[[34m^G^[[mtk219719675/^[[34m^M^M -^[^[[m[?2004l0 1 2 3^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[78;1Hards/tyan7102$ /tmp^[[34m^H^H^H^H^[^[[m[Kfutk more RUN4^[[34m^G^M^M -^[^[[m[?2004l[more RUN4]OK ^C^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[81;1Hards/tyan7102$ m^[[82;129H11668,1^[[7CBot^[[48;1H^[[?25h^[[?25l^[[82;135H2^[[48;2H^[[?25h^[[?25l^[[82;135H3^[[48;;3H^[[?25h^[[?25l^[[82;135H4^[[48;4H^[[?25h^[[?25l^[[82;135H5^[[48;5H^[[?25h^[[?25l^[[82;135H6^[[48;6H^[[?25h^[[?25l^[[82;135H7^[[48;7H^[[?25h^[[?225l^[[82;135H8^[[48;8H^[[?25h^[[?25l^[[82;135H9^[[48;9H^[[?25h^[[?25l^[[82;135H10^[[48;10H^[[?25h^[[?25l^[[82;136H1^[[48;11H^[[?25h^[[?25l^[[82;1366H2^[[48;12H^[[?25h^[[?25l^[[82;136H3^[[48;13H^[[?25h^[[?25l^[[82;136H4^[[48;14H^[[?25h^[[?25l^[[82;136H5^[[48;15H^[[?25h^[[?25l^[[82;136H6^[[48;166H^[[?25h^[[?25l^[[82;136H7^[[48;17H^[[?25h^[[?25l^[[82;132H90,1 ^[[80;1H^[[?25h^[[?25l^[[82;132H89^[[79;1H^[[?25h^[[?25l^[[82;133H8^[[77;1H^[[?25hh^[[?25l^[[82;133H7^[[76;1H^[[?25h^[[?25l^[[82;133H6^[[74;1H^[[?25h^[[?25l^[[82;133H5^[[72;1H^[[?25h^[[?25l^[[82;133H4^[[70;1H^[[?25h^[[?25l^[[82;1133H3^[[69;1H^[[?25h^[[?25l^[[82;133H2^[[68;1H^[[?25h^[[?25l^[[82;133H1^[[67;1H^[[?25h^[[?25l^[[82;133H0^[[66;1H^[[?25h^[[?25l^[[82;132H79^[[64;1H^^[[?25h^[[?25l^[[82;133H8^[[62;1H^[[?25h^[[?25l^[[82;133H7^[[60;1H^[[?25h^[[?25l^[[82;133H6^[[58;1H^[[?25h^[[?25l^[[57;1H^[[106m[^[[64C]^[[m^[[82;1133H5^[[57;1H^[[?25h^[[?25l^[[82;129H^[[K^[[82;1H:^[[?2004h^[[?25hq^[[?25l^[[?25h^M^[[?25l^[[?2004l^[]2;rminnich@xcpu: /usr/local/src/projects/nobiinaryblobs/mainboards/tyan7102^G^[]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^G^[[82;1H^[[K^[[82;1H^[[?2004l^[[?1l^^[>^[[?25h^[[?1049l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/noobinaryblobs/mainboards/tyan7102$ ^[[?2004lexit^M -There are stopped jobs.^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ fg^M -^[[?2004lmake d98^M -^Cinterrupt^M -^C^C^C^M -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK ^Z^M -[1]+ Stoppedmake d98^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^Gu^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^[[?2004lexit^M -There are stopped jobs.^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ fg^M -^[[?2004lmake d98^M -^Z^M -[1]+ Stoppedmake d98^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ kill -09 ^H^[[K^H^[[K^H^[[K9 %1^M -^[[?2004l^M -[1]+ Stoppedmake d98^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l[1]+ Killedmake d98^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^[[?2004lexit^M - -Script done on 2019-01-03 13:52:38-080012116,1Bot[?25h[?25l?[?2004h[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h [?25l12070,21 Bot[?25h[?25l2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle^^M^M -^[[81;146Ha^[[82;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M^M -^[[32mPress ENTER or type command to continue^[[?25h^[[27m^[[23m^[[29m^[[m^[[H^[[2J^[[?25l^[[1;1HSent 12582912 bytes of 33554432^[[34m^M^[[m^M -Sent 14680064 bytes of 33554432^[[34m^M^[[m^M -Sent 16777216 bytes of 33554432^[[34m^M^[[m^M -Sent 18874368 bytes of 33554432^[[34m^M^[[m^M -Sent 20971520 bytes of 33554432^[[34m^M^[[m^M -Sent 23068672 bytes of 33554432^[[34m^M^[[m^M -Sent 25165824 bytes of 33554432^[[34m^M^[[m^M -Sent 27262976 bytes of 33554432^[[34m^M^[[m^M -Sent 29360128 bytes of 33554432^[[34m^M^[[m^M -Sent 31457280 bytes of 33554432^[[34m^M^[[m^M -Sent 33554432 bytes of 33554432^[[34m^M^[[m^M -Transfer Succeeded^[[34m^M^[[m^M -Started EM100Pro^[[34m^M^[[m^M -+ echo date^[[34m^M^[[m^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^[[34m^M^[[m^M -sleeping 50 because this piece of shit can't take it^[[34m^M^[[m^M -+ sleep 50^[[34m^M^[[m^M -+ echo ./0^[[34m^M^[[m^M -+ sleep 5^[[34m^M^[[m^M -+ echo ./1^[[34m^M^[[m^M -+ sleep 10^[[34m^M^[[m^M -+ ./uinit -m tester^[[34m^M^[[m^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^[[34m^M^[[m^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^[[34m^M^[[m^M -Command.Welcome(&{}): ______________^[[34m^M^[[m^M -< welcome to DUT >^[[34m^M^[[m^M - --------------^[[34m^M^[[m^[[28;10H\ ^__^ ^[[34m^M^[[m^[[29;11H\ (oo)\_______^[[34m^M^[[m^[[30;14H(__)\^[[7C)\/\^[[34m^M^[[m^[[31;18H||----w |^[[34m^M^[[m^[[32;18H|| ||^[[34m^M^M -^M^[[m^M -Command.Reboot(&{0s}): ^[[34m^M^[[m^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^[[34m^M^[[m^M -Command.Welcome(): ______________^[[34m^M^[[m^M -< welcome to DUT >^[[34m^M^[[m^M - --------------^[[34m^M^[[m^[[39;10H\ ^__^ ^[[34m^M^[[m^[[40;11H\ (oo)\_______^[[34m^M^[[m^[[41;14H(__)\^[[7C)\/\^[[34m^M^[[m^[[42;18H||----w |^[[34m^M^[[m^[[43;18H|| ||^[[34m^M^M -^M^[[m^M@ @ @ @ @ @ @ 12031,21 99%[?25h[?25l?Remove2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^^M^M -^[[81;146HC^[[82;1HityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^[[34m^M^[[m^M^M12029,21 99%[?25h[?25l?Remove2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav^^M^M -^[[81;146He^[[82;1Hrom r:cleaner]}: file is /tmp/futk925337781/126^[[34m^M^[[m^M^M12027,21 99%[?25h[?25l?Remove2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^^M^M -^[[81;146Hp^[[82;1H[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^[[34m^M^[[m^M^M@ 12025,21 99%[?25h[?25l?Remove2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map^^M^M -^[[81;146H[^[[82;1Hr:cleaner R:saverom]}: file is /tmp/futk925337781/124^[[34m^M^[[m^M^M@ 12023,21 99%[?25h[?25l?Remove2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -^[[81;146He^[[82;1HLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^[[34m^M^[[m^M^M12021,21 99%[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h/[?25l[?25hp[?25l[?25h [?25l -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/2^M -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/5^M -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:clean -er R:saverom]}: file is /tmp/futk925337781/7^M -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/8^M -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9^M -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/10^M -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/11^M -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12^M -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/13^M -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/14^M -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16^M -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/19^M -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/20^M -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 m -ap[R:saverom r:cleaner]}: file is /tmp/futk925337781/21^M -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleane -rR:saverom]}: file is /tmp/futk925337781/23^M -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -HandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/25^M -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/26^M -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/27^M -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28^M -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/30^M -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/31^M -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/32^M -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor -Dxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/34^M -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/36^M -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41^M -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/43^M -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/44^M -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/45^M -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo -licy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/48^M -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r: -cleaner R:saverom]}: file is /tmp/futk925337781/50^M -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51^M --- More --[?25h[?25l2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/54^M -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:s -averom r:cleaner]}: file is /tmp/futk925337781/55^M -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/57^M -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/58^M -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma -p[R:saverom r:cleaner]}: file is /tmp/futk925337781/59^M -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/61^M -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/62^M -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[ -R:saverom r:cleaner]}: file is /tmp/futk925337781/64^M -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/66^M -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/68^M -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/69^M -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/70^M -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/72^M -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/73^M -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/74^M -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/75^M -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/76^M -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali -ze 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/79^M -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE -ntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/84^M -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86^M -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88^M -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/89^M -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90^M -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92^M -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R: -saverom r:cleaner]}: file is /tmp/futk925337781/93^M -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94^M -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/98^M -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99^M -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi -ghtningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL -ightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:sav -e-- More --[?25hrom r:cleaner]}: file is /tmp/futk925337781/103^M -[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/104^M -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105^M -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/108^M -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112^M -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/114^M -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe -tupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/117^M -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/119^M -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120^M -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/121^M -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122^M -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/124^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav -erom r:cleaner]}: file is /tmp/futk925337781/126^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map -^M^M -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -^M^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 ma -^M^M -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:clean -^M^M -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 m -^M^M -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -^M^M -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r -^M^M -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:c -^M^M -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -^M^M -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saver -^M^M -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:sa -^M^M -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7^ -M^M -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[ -^M^M -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r -^M^M -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 m -^M^M -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleane -^M^M -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -^M^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r -^M^M --- More --[?25h[?25l2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saver -^M^M -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cle -^M^M -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -^M^M -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:sa -^M^M -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:c -^M^M -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cle -^M^M -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor -^M^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[ -^M^M -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cle -^M^M -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^ -M^M -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -^M^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cl -^M^M -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r -^M^M -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r -^M^M -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -^M^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo -^M^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[ -^M^M -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r: -^M^M -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -^[[32m-- More --^[[?25h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483- -609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:c^M^M -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:s -^M^M -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m -^M^M -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map -^M^M -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma -^M^M -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cle -^M^M -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -^M^M -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -^M^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[ -^M^M -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -^M^M -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -^M^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cle -^M^M -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cl -^M^M -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:c -^M^M -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -^M^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma -^M^M -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map -^M^M -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma -^M^M -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -^M^M -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cl -^-- More --[?25hM^M -[?25l2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali -^M^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[ -^M^M -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -^M^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE -^M^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -^M^M -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^ -M^M -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r -^M^M -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^ -M^M -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^ -M^M -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R: -^M^M -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -^M^M -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -^M^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map -^M^M -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -^M^M -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi -^M^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL -^M^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -^M^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:sav -^M^M -^[[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe -7map[r^M^M -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:c -^M^M -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -^M^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:c -^M^M -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -^M^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe -^M^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cle -^M^M -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -^M^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map -^M^M -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -^M^M -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cle -^M^M -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 -^M^M -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map -^M^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma -^M^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav -^M^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -^M^M --- More --[?25h[?25l2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -^M^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -Press ENTER or type command to continue[?25h[?25l2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -^[[81;146He^[[82;1HLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^[[34m^M^[[m^M^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map^^M^M -^[[81;146H[^[[82;1Hr:cleaner R:saverom]}: file is /tmp/futk925337781/124^[[34m^M^[[m^M^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^^M^M -^[[81;146Hp^[[82;1H[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^[[34m^M^[[m^M^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav^^M^M -^[[81;146He^[[82;1Hrom r:cleaner]}: file is /tmp/futk925337781/126^[[34m^M^[[m^M^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^^M^M -^[[81;146HC^[[82;1HityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^[[34m^M^[[m^M^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle^^M^M -^[[81;146Ha^[[82;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M^M -^[[32mPress ENTER or type command to continue^[[?25h^[[27m^[[23m^[[29m^[[m^[[H^[[2J^[[?25l^[[1;1HSent 12582912 bytes of 33554432^[[34m^M^[[m^M -Sent 14680064 bytes of 33554432^[[34m^M^[[m^M -Sent 16777216 bytes of 33554432^[[34m^M^[[m^M -Sent 18874368 bytes of 33554432^[[34m^M^[[m^M -Sent 20971520 bytes of 33554432^[[34m^M^[[m^M -Sent 23068672 bytes of 33554432^[[34m^M^[[m^M -Sent 25165824 bytes of 33554432^[[34m^M^[[m^M -Sent 27262976 bytes of 33554432^[[34m^M^[[m^M -Sent 29360128 bytes of 33554432^[[34m^M^[[m^M -Sent 31457280 bytes of 33554432^[[34m^M^[[m^M -Sent 33554432 bytes of 33554432^[[34m^M^[[m^M -Transfer Succeeded^[[34m^M^[[m^M -Started EM100Pro^[[34m^M^[[m^M -+ echo date^[[34m^M^[[m^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^[[34m^M^[[m^M -sleeping 50 because this piece of shit can't take it^[[34m^M^[[m^M -+ sleep 50^[[34m^M^[[m^M -+ echo ./0^[[34m^M^[[m^M -+ sleep 5^[[34m^M^[[m^M -+ echo ./1^[[34m^M^[[m^M -+ sleep 10^[[34m^M^[[m^M -+ ./uinit -m tester^[[34m^M^[[m^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^[[34m^M^[[m^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^[[34m^M^[[m^M -Command.Welcome(&{}): ______________^[[34m^M^[[m^M -< welcome to DUT >^[[34m^M^[[m^M - --------------^[[34m^M^[[m^[[28;10H\ ^__^ ^[[34m^M^[[m^[[29;11H\ (oo)\_______^[[34m^M^[[m^[[30;14H(__)\^[[7C)\/\^[[34m^M^[[m^[[31;18H||----w |^[[34m^M^[[m^[[32;18H|| ||^[[34m^M^M -^M^[[m^M -Command.Reboot(&{0s}): ^[[34m^M^[[m^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^[[34m^M^[[m^M -Command.Welcome(): ______________^[[34m^M^[[m^M -< welcome to DUT >^[[34m^M^[[m^M - --------------^[[34m^M^[[m^[[39;10H\ ^__^ ^[[34m^M^[[m^[[40;11H\ (oo)\_______^[[34m^M^[[m^[[41;14H(__)\^[[7C)\/\^[[34m^M^[[m^[[42;18H||----w |^[[34m^M^[[m^[[43;18H|| ||^[[34m^M^M -^M^[[m^M -2019/01/03 13:50:13 We are now done ......................^[[34m^M^[[m^M -+ echo 'ALL DONE'^[[34m^M^[[m^M -ALL DONE^[[34m^M^[[m^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443)))^[[51;1H^[[34m^M^[[m^M -2019/01/03 13:50:13 removed [0xc000026180]^[[34m^M^[[m^M -^Cinterrupt^[[34m^M^[[m^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[59;1Hards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[61;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[63;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[65;1Hbs/mainboards/tyan7102$ ./uinit -m ssh^[[34m^M^M -^[^[[m[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^[[34m^M^M -^M^M -^M^[[m^M -^C^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[71;1Hards/tyan7102$ ^[[34m^M^M12070,199%[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l69,12-13[?25h[?25l8,13 [?25h[?25l7[?25h[?25l6,6-7[?25h[?25l5,13 [?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0,6-7[?25h[?25l59,13 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3,12-13[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l49[?25h[?25l8,13 [?25h[?25l7[?25h[?25l6,12[?25h[?25l5,13[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l39[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3,12-13[?25h[?25l2,11-12[?25h[?25l1,13 [?25h[?25l0,11-12[?25h[?25l29,13 [?25h[?25l8,11-12[?25h[?25l7,13 [?25h[?25l6,11-12[?25h[?25l5,13 [?25h[?25l6,11-12[?25h[?25l7,13 [?25h[?25l:[?2004h[?25hv[?25l[?25h/[?25l[?25h[?25l[?25h[?25l[?25hf[?25l[?25h[?25l [?25hr[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hf[?25l[?25he[?25l[?25h[?25l[?25h[?25l[?25hv[?25l[?25he[?25l[?25hi[?25l[?25ht[?25l[?25h [?25l"removeit" [Not edited] 12116 lines --99%--12027,13 99%]2;removeit (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;removeit[?25h[?25l:[?2004h[?25hg[?25l[?25h[?25l[?25hv[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h/[?25l[?25hd[?25l[?25h [?25l11912 fewer lines9/01/03 13:50:133C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus 7 map[r:cleaaa[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 204,1Bot]2;removeit + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;removeit204,1Bot[?25h[?25l:[?2004h[?25h [?25l204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25hs[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h[?25l [?25h.[?25l[?25h}[?25l[?25h[?25l[?25h{[?25l[?25h [?25l204 substitutions on 204 lines3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaa^[[49;1Hnner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25hm[?25l[?25ha[?25l[?25hp[?25l[?25h.[?25l[?25h*[?25l[?25h [?25l153 substitutions on 153 lines~ 204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h.[?25l[?25h*[?25l[?25h [?25l204 substitutions on 204 lines204,1Bot204,1Bot[?25h[?25lchanges; before #4 1 seconds ago8/12/20 12:50:31 00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 -2018/12/20 12:56:20 DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRPP 7 2018/12/20 13:06:24 9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 2018/12/20 13:12:12 6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightninggRidgeEXECB2 7 2018/12/20 13:18:00 634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 2018/12/20 13:23:49 BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 2018/12/20 13:29:37 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeeEXRP 7 2018/12/20 13:35:25 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 2018/12/20 13:41:13 86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 2018/12/20 13:47:01 AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 2018/12/20 13:52:49 580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 2018/12/20 13:58:37 43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 2018/12/20 14:08:44 24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 2018/12/20 14:23:05 271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 2018/12/20 14:28:52 502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 2018/12/20 14:34:40 BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 2018/12/20 14:44:46 961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 2018/12/20 14:50:33 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRunttimeDxe 7 2018/12/20 14:56:17 AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 2018/12/20 15:02:05 8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 2018/12/20 15:07:52 9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 2018/12/20 15:13:41 7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEEXECB4 7 2018/12/20 15:26:10 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 2018/12/20 15:31:58 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 2018/12/20 15:37:46 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 2018/12/20 15:43:34 FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 2018/12/20 15:49:22 BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 2018/12/20 15:55:10 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPPGA 7 2018/12/20 16:00:58 E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 2018/12/20 16:11:04 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEEPRP 7 2018/12/20 16:25:28 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 2018/12/20 16:31:15 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 77 2018/12/20 16:37:04 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 2018/12/20 16:42:51 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 2018/12/20 16:48:38 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 2018/12/20 16:54:25 B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 2018/12/20 17:00:13 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 2018/12/20 17:05:56 E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 2018/12/20 17:15:56 858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 2018/12/20 17:21:39 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFFPGA 7 2018/12/20 17:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 2018/12/20 17:41:41 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 2018/12/20 17:51:42 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 2018/12/20 17:57:23 C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 2018/12/20 18:03:05 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 2018/12/20 18:13:05 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 2018/12/20 18:18:47 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 2018/12/20 18:24:29 CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 2018/12/20 18:30:11 DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 2018/12/20 18:40:11 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 2018/12/20 18:45:53 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeeEXECB4 7 2018/12/20 18:51:35 A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 2018/12/20 18:57:18 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 2018/12/20 19:03:00 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 2018/12/20 19:08:43 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEEXECB3 7 2018/12/20 19:14:21 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 2018/12/20 19:19:58 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 2018/12/20 19:25:36 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 2018/12/20 19:31:14 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 2018/12/20 19:36:52 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 2018/12/20 19:45:57 6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 2018/12/20 19:50:45 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 2018/12/20 19:55:33 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEEXECB2 7 2018/12/20 20:08:55 B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 2018/12/20 20:13:39 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 2018/12/20 20:22:43 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 2018/12/20 20:31:44 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightninggRidgeEXECB3 7 1,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines:10 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 :58 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 :46 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 -:34 FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M:22 BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 :10 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M -:58 E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 :04 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M:28 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M:15 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M -:04 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 :51 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 :38 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 :25 B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M -:13 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M:56 E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 :56 858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 :39 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M[?25h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE__DRIVER:UsbInt13 7 :41 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 :42 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^M -:23 C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 :05 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M -:05 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 :47 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 :29 CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M -:11 DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 :11 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 :53 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M:35 A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 :18 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 :00 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 :43 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M -:21 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M:58 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 :36 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M -:14 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 :52 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 :57 6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M -:45 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 :33 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M:55 B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M:39 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 :43 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M:44 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M:31 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 :19 F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M:06 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M -:53 BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^M:36 DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 :23 7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M:10 D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M:57 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M:02 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 :49 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^M -:33 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M:20 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M -:07 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M:54 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7  21:47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 :28 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M -:49 DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 :53 9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M:50 7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M:44 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 :31 CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M -:18 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M:01 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 :48 E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M:35 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 :22 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M:08 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 :55 0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M:41 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M:28 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 -:14 4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M:00 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 :21 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M:13 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 :13 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7  97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7  13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7  FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7  68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7  52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7  69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7  25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7  B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7  858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7  6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M5h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIIVER:UsbInt13 7  29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7  2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^M C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7  F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7  5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7  CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7  5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7  018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7  3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7  171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7  D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7  3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7  63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7  6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7  8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7  BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7  F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^M DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7  7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7  7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^M F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 :47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7  7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7  9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M 7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7  CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7  E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7  7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7  0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7  4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7  9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7  3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 204,2Bot204,2Bot[?25h[?25l -204 changes; before #6 0 seconds ago:31 00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 -:20 DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP 7 -:24 9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 -:12 6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 7 -:00 634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 :49 BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 :37 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 -:25 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 :13 86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 :01 AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -:49 580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -:37 43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -:44 24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -:05 271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 :52 502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 :40 BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 -:46 961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 :33 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe 7 -:17 AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 :05 8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 -:52 9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 -:41 7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 -:10 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7:58 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7:46 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 -:34 FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 -:22 BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 :10 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA 7 -:58 E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 -:04 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP 7 -:28 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -:15 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 -:04 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 -:51 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 :38 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo:25 B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 -:13 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 -:56 E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 -:56 858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 -:39 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA 7 -:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -:41 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 :42 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 :23 C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 -:05 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 :05 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 :47 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 :29 CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 -:11 DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 :11 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 :53 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 7 -:35 A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 :18 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 :00 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 :43 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 7 -:21 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 :58 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 :36 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 :14 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 :52 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 -:57 6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 -:45 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 :33 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 7 -:55 B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 -:39 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 :43 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -:44 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 -:31 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 :19 F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -:06 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 7 -:53 BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -:36 DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 :23 7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 -:10 D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 7 -:57 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP 7 -:02 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 -:49 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -:33 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 7 -:20 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP 7 -:07 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -:54 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 71,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h4[?25l[?25h[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7  97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7  13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7  FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 - 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7  52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M - 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe - 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe - 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7  B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M - 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M - E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7  858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 - 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M5h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIIVER:UsbInt13 7  29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 - 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^M C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 - F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M - 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7  5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7  CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M - DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7  5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7  018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7  3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7  171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M - 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7  3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7  63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7  6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup - 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M - B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M - 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7  BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M - 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 - F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^M - DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7  7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M - 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7  7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^M - F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M - 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M - 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M - 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7  7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7  9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M 7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7  CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M - 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7  E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7  7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7  0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7  4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M - 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7  9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7  3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 204,2Bot204,2Bot[?25h[?25l[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l199[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l69[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l59[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l49[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l3[?25h[?25l -517:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7~ 143,2Bot[?25h[?25l4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 [?25h[?25l64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 - 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 - 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 - FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M - BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 - 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 - 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M - 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 - 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 - 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 - B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M - 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M - E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 - 858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 - 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M -54C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 - 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 - 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^M - C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 - F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M - 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 - 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 - CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M - DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 - 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 - 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M - A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 - 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 - 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 - D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M - 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 - 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M - 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 - 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 - 6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M - 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 - 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M - B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M - 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 - BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M - 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 - F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M - 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^M - DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 - 7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M - 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 - 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^M - F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M - 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M - 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M - 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 -:47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 - 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 - 9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 - CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M - CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M - 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 - E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M - BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 - 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 - 0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M - 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 - 4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M - 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 - 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 - 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 -~ 143,2Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^MBB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 -68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^ME8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 -52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 -25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^ME052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^MC4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 -CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^MDEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 -5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^MA210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 -3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 -3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 -63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^MB7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 -BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^MBB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^MDC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 -7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^MD6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^MF8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 -47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^MDC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 -9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 -CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^MCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^MBC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 -0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 204,1Bot204,1Bot[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l199[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l69[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l59[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l49[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l39[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25h%[?25l[?25hs[?25l[?25h/[?25l[?25h^^M[?25l[?25h/[?25l[?25h/[?25l[?25hg[?25l[?25h [?25lE488: Trailing characters132,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h^^M[?25l[?25h/[?25l[?25h/[?25l[?25hg[?25l[?25h [?25l102 substitutions on 51 lines202,1Bot202,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25h[?25l [?25h [?25l204 substitutions on 204 lines:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD7:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDmma:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLighmama:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE7:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD7:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx7:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL7:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh7:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxma:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon204,0-1Bot204,0-1Bot[?25h[?25lchanges; before #12 1 seconds ago00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 -DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP 7 -9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 7 -634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 -BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 -86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 -AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 -43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 -24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 -BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe 7 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 -8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 -9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 -7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 -68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA 7 -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 -52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP 7 -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 -25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA 7 -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 -C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 -CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 -5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 7 -A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 -3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 7 -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 -3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 -63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 7 -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 -BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 7 -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 -7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 7 -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP 7 -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 7 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP 7 -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 1,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h$[?25l[?25h [?25l204 substitutions on 204 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCAUsbOcUpdateDxeLig -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65EAcpiVTD 77C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4FSerialIo 713AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7EbcDxe 7FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CECBootScriptExecuto -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5FmiFlashDxe 768D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928SmbiosDataUpdateDE8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EACSpsDxe 752C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306SetupConfigUpdate -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5CGraphicsConsole 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089sbOcUpdateDxeNeo -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063UuidDxe -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82AUbaInitDxe 75ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7CsmBlockIo 7B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1OpromUpdateDxeNeo -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188TcgPlatformSetupP -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364DPchSmbusDxe 7 -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412cgLegacy 76AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78SetupConfigUpdate -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFCUsbInt13 7 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063CsmVideo 7 -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807TyanBadDimmDxe 7 C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908CrystalRidge 7 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8WatchdogTimer 7 m -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6CRB -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 7CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890AtaticSkuDataDxeN -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87JedecNvDimm 75038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 7018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8IioCfgUpdateDxeLiA210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABADpcDxe 73237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726CmosDxe 7171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30sbRtDxe 7 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3OpromUpdateDxeLig -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBAStatusCodeDxe 7 m -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55FAcpiPlatform 73FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43BPpmInitialize 7 m3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7iBus 763809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5IioInit 7372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916DxeIpmiBmcInitial6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666SocketSetup 7 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F735UsbOcUpdateDxeLig -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470HardwareSignature -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101 7BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CEFpgaSocketSetup -72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2SetupConfigUpdate -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551DxeIpmiUsb 7 -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFCecurityStubDxe 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BBSmbiosDataUpdateD -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFEPchResetRuntime -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454BMtftp4Dxe 77AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBABUsbOcUpdateDxeNeo -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BCSmbiosDataUpdateD -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47StaticSkuDataDxeN -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5LegacySredir 77F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFPlatformEarlyDxe -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4StaticSkuDataDxeL -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9SlotDataUpdateDxe -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829HttpUtilitiesDxe -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113ArpDxe 747:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 77474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52mbiosDataUpdateD -DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06AFpkSetup 79AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189OpromUpdateDxeLig7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965CSetupConfigUpdate -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36DcScreen 7CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649AOpromUpdateDxeNeoCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109PciOutOfResourceS -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63Aint13 7E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152lotDataUpdateDxeC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4BmcLanConfig 77D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57OpromUpdateDxeLig -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4AMnpDxe 70718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707Tpm20PlatformDxe 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768mbiosDataUpdateD34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0SvSmmSupport -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1SecureBootDXE 7 m5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453WdtDxe 79BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE08UsbOcUpdateDxeNeo3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus 73C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus204,1Bot204,1Bot[?25h[?25l -204 changes; before #13 2 seconds ago00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6TyanBoardDXE 7 DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5SlotDataUpdateDxeNeonCityEPRP 7 -9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443DevicePathDxe 7 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86SetupConfigUpdateDxeLightningRidgeEXECB2 7 -634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458Nvme 7 65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2ataController 7 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6IioCfgUpdateDxeLightningRidgeEXRP 7 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97EGenericSio 7 -86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725FIScsiDxe 7 AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1FDxeSelStatusCode 7 -580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EBhcd 7 43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76BmcElog -24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5MePolicyInitDxe 7 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3ExportHiiDb 7 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4PciDxeInit 7 BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581S3SaveStateDxe 7 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1FFat 7 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85raceHubStatusCodeHandlerRuntimeDxe 7 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1EOemVtdRmrr 7 8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552Ahci 7 9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907DxeFrb 77D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCAUsbOcUpdateDxeLightningRidgeEXECB4 7 -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65EAcpiVTD 7 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4FSerialIo 7 3AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7Ebc -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CECBootScriptExecutorDxe 7 -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5FmiFlashDxe 7 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928SmbiosDataUpdateDxeNeonCityFPGA 7 -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EACSpsDxe 7 -52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306SetupConfigUpdateDxeNeonCityEPRP 7 -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5CGraphicsConsole 7 -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089UsbOcUpdateDxeNeonCityEPECB 7 -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063uidDxe 7 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82AUbaInitDxe 7 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7CsmBlockIo 7 B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1OpromUpdateDxeNeonCityFPGA 7 -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188TcgPlatformSetupPolicy 7 -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364DhSmbusDxe 7 -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412TcgLegacy 7 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78SetupConfigUpdateDxeNeonCityFPGA 7 -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFCUsbInt13 7 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD06CsmVideo 7 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807TyanBadDimmDxe 7 -C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908CrystalRidge 7 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8WatchdogTimer 7 -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6CRBDxe 7 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 7 CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890AtaticSkuDataDxeNeonCityFPGA 7 -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87JedecNvDimm 7 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 7 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8IioCfgUpdateDxeLightningRidgeEXECB4 7 -A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABADpcDxe 7 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726CmosDxe 7 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30UsbRtDxe 7 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3OpromUpdateDxeLightningRidgeEXECB3 7 -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBAStatusCodeDxe 7 -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55FAcpiPlatform 7 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43BPpmInitialize 7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus 7 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5IioInit 7 -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666ocketSetup 7 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353UsbOcUpdateDxeLightningRidgeEXECB2 7 -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470HardwareSignatureEntry 7 -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101 7 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CEFpgaSocketSetup 7 -72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2SetupConfigUpdateDxeLightningRidgeEXECB3 7 -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551DxeIpmiUsb 7 F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFCSecurityStubDxe 7 -9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BBmbiosDataUpdateDxeLightningRidgeEXECB2 7 -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFEPchResetRuntime 7 -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454BMtftp4Dxe 7 7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBABUsbOcUpdateDxeNeonCityFPGA 7 -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BCSmbiosDataUpdateDxeLightningRidgeEXECB1 7 -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47taticSkuDataDxeNeonCityEPRP 7 -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5LegacySredir -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFPlatformEarlyDxe 7 -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4StaticSkuDataDxeLightningRidgeEXECB3 7 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3DSlotDataUpdateDxeLightningRidgeEXRP 7 -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829HttpUtilitiesDxe 7 -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113ArpDxe1,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h8[?25l[?25h[?25l[?25h7[?25l[?25h [?25l177 substitutions on 177 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCAD77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65EAcpiVTD 7C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4FSerialIo 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7EbcDxe FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CECBootScriptExecutor -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5FmiFlashDxe 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928SmbiosDataUpdateDxE8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EACSpsDxe 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306SetupConfigUpdateD -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5CGraphicsConsole9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089sbOcUpdateDxeNeon -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063UuidDxe69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82AUbaInitDxe 5ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7CsmBlockIo B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1OpromUpdateDxeNeon -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188TcgPlatformSetupPo -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364DPchSmbusDxe -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412cgLegacy 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78SetupConfigUpdateD -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFCUsbInt13 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063CsmVideo -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807TyanBadDimmDxe mC4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908CrystalRidge -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8WatchdogTimer ma -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6CRB5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890AtaticSkuDataDxeNe -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87JedecNvDimm 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8IioCfgUpdateDxeLigA210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABADpcDxe 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726CmosDxe 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30sbRtDxe -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3OpromUpdateDxeLigh -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBAStatusCodeDxe ma -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55FAcpiPlatform 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43BPpmInitialize ma3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7iBus 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5IioInit 372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916DxeIpmiBmcInitiali6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666SocketSetup -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F735UsbOcUpdateDxeLigh -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470HardwareSignatureE -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CEFpgaSocketSetup -72FE44FF-44FC-4653-918A-0D5E76C416D22FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551DxeIpmiUsb -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFCecurityStubDxe9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BBSmbiosDataUpdateDx -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFEPchResetRuntime -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454BMtftp4Dxe 7AB22C56-2510-4FD2-AC18-57394419FBABAB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BCSmbiosDataUpdateDx -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47StaticSkuDataDxeNe -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5LegacySredir 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFF8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4StaticSkuDataDxeLi -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9SlotDataUpdateDxeL -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829HttpUtilitiesDxe -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113ArpDxe 47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06AFpkSetup 9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189OpromUpdateDxeLigh7FD082A9-3D6B-44E3-9C31-74D6B80F965CFD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36DcScreen CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649AOpromUpdateDxeNeonCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109PciOutOfResourceSe -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63Aint13 E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152lotDataUpdateDxeNC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4BmcLanConfig 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4AMnpDxe 0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707Tpm20PlatformDx8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768mbiosDataUpdateDx34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0SvSmmSupport4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1SecureBootDXE ma5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453WdtDxe 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE08UsbOcUpdateDxeNeon3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus204,1Bot204,1Bot[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l199[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l7:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25l:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25l41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25l1 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25l CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25lCD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25lF099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm -5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 -A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe -3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: -BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup -72FE44FF-44FC-4653-918A-0D5E76C416D22FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe -9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe -7AB22C56-2510-4FD2-AC18-57394419FBABAB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFF8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP 7 -DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup -9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 -7FD082A9-3D6B-44E3-9C31-74D6B80F965CFD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 7 -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen -CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 7 -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe -0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe ma -6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController m -74346897-9E0C-4B41-BF1F-BAA1ECB85DA64346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe m -961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr -8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -7D77B32E-BAB2-4CC7-8378-7550513F3FCAD77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD125,135%[?25h[?25l00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP -9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe -6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 -634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController -74346897-9E0C-4B41-BF1F-BAA1ECB85DA64346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe -961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe -AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr -8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -7D77B32E-BAB2-4CC7-8378-7550513F3FCAD77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe -52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe -25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe -C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge46,1Top[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l39[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l29[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l:[?2004h[?25hq[?25l[?25h![?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi RUN4 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"RUN4" 12116L, 623524C▽ [>c]10;?]11;?Script started on 2018-12-20 12:38:28-0800 -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ make d4^M -^[[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean^M -2018/12/20 12:38:32 Found 310 things^M -2018/12/20 12:38:32 script is ./DXECLEANER^M -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8)^M -2018/12/20 12:38:42 removed [0xc000025200]^M -+ echo TEST /tmp/futk925337781/1^M -TEST /tmp/futk925337781/1^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r^M -[sudo] password for rminnich: ^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707^M -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 We are now done ......................^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6)^^M -2018/12/20 12:44:44 removed [0xc0084f8b00]^M -+ echo TEST /tmp/futk925337781/2^M -TEST /tmp/futk925337781/2^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M1,1Top]2;RUN4 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;RUN4[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l:[?2004h[?25h [?25l1,1Top[?25h[?25l/[?2004h[?25hE[?25l[?25hn[?25l[?25hg[?25l[?25hl[?25l[?25hi[?25l[?25hs[?25l[?25hh[?25l[?25h[?25l[?25h [?25lSent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 21:39:24 Listening on 192.168.0.1:8080 at 2018-12-20 21:39:24.640238823 -0800 PST m=+0.005299504^M -2018/12/20 21:41:18 Accepted &{{0xc000154080}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2018/12/20 21:42:54 Accepted &{{0xc000154180}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2018/12/20 21:42:54 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:saveerom r:cleaner]}: file is /tmp/futk925337781/103^M -2018/12/20 21:42:54 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600)^M -2018/12/20 21:42:54 removed [0xc000024380]^M -+ echo TEST /tmp/futk925337781/104^M -TEST /tmp/futk925337781/104^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/104 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M6972,9557%[?25h[?25l3,43[?25h[?25l4,35[?25h[?25l5,28[?25h[?25l6,12[?25h[?25l7,11[?25h[?25l8,12[?25h[?25l9,94[?25h[?25l80,25[?25h[?25l1,18[?25h[?25l2,26[?25h[?25l3,24[?25h[?25l4,27[?25h[?25l5[?25h[?25l6,32[?25h[?25l7,1 [?25h[?25l8,17[?25h[?25l9,33[?25h[?25l90,22[?25h[?25l1,31[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5,32[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l7000[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7,19[?25h[?25l8,17[?25h[?25l9,12[?25h[?25l10,65[?25h[?25l1,53[?25h[?25l2,11[?25h[?25l -+ echo ./0^M7013,1157%[?25h[?25l -+ sleep 5^M7014,1057%[?25h[?25l -+ echo ./1^M7015,1157%[?25h[?25l -+ sleep 10^M7016,1157%[?25h[?25l -+ ./uinit -r^M7017,1357%[?25h[?25l -2018/12/20 21:44:11 Listening on 192.168.0.1:8080 at 2018-12-20 21:44:11.365626903 -0800 PST m=+0.004529410^M7018,9557%[?25h[?25l -2018/12/20 21:46:05 Accepted &{{0xc000022100}}^M7019,4757%[?25h[?25l -Command.Welcome(&{}): ______________^M7020,3957%[?25h[?25l -< welcome to DUT >^M7021,1957%[?25h[?25l ---------------^M7022,1757%[?25h[?25l -\ ^__^ ^M7023,1957%[?25h[?25l -\ (oo)\_______^M7024,2657%[?25h[?25l -(__)\)\/\^M7025,3057%[?25h[?25l -||----w |^M7026,2757%[?25h[?25l -|| ||^M7027,2757%[?25h[?25l -^M7028,157%[?25h[?25l -Command.Reboot(&{0s}): ^M7029,2457%[?25h[?25l -2018/12/20 21:47:41 Accepted &{{0xc000142080}}^M7030,4757%[?25h[?25l -Command.Welcome(): ______________^M7031,4157%[?25h[?25l -< welcome to DUT >^M7032,1957%[?25h[?25l ---------------^M7033,1757%[?25h[?25l -\ ^__^ ^M7034,1957%[?25h[?25l -\ (oo)\_______^M7035,2657%[?25h[?25l -(__)\)\/\^M7036,3057%[?25h[?25l -||----w |^M7037,2757%[?25h[?25l -|| ||^M7038,2757%[?25h[?25l -^M7039,157%[?25h[?25l -2018/12/20 21:47:41 We are now done ......................^M7040,5957%[?25h[?25l -+ echo 'ALL DONE'^M7041,1857%[?25h[?25l -ALL DONE^M7042,957%[?25h[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r::cleaner R:saverom]}: file is /tmp/futk925337781/104^M7043,9557%[?25h[?25l2018/12/20 21:47:41 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1--BC68-DA5EFE615B52)^M7044,9557%[?25h[?25l -2018/12/20 21:47:41 removed [0xc000025c00]^M7045,4357%[?25h[?25l -+ echo TEST /tmp/futk925337781/105^M7046,3557%[?25h[?25l -TEST /tmp/futk925337781/105^M7047,2857%[?25h[?25l -+ echo date^M7048,1257%[?25h[?25l+ echo ./0^M -+ echo ./pg^M7049,1157%[?25h[?25l50,12[?25h[?25l -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/105 -r^M7051,9457%[?25h[?25l -will emulate 'W25Q256FV'^M7052,2557%[?25h[?25l -MCU version: 3.03^M7053,1857%[?25h[?25l -FPGA version: 2.10 (3.3V)^M7054,2657%[?25h[?25l:[?2004h[?25hv[?25l[?25h/[?25l[?25hr[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25hf[?25l[?25h[?25l [?25hr[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h1[?25l[?25h0[?25l[?25h0[?25l[?25h [?25l"remove100" [Not edited] 12116 lines --58%--7054,2657%]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25h[?25l:[?2004h[?25hv[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h/[?25l[?25hd[?25l[?25h [?25l11912 fewer lines2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 204,1Bot]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25hm[?25l[?25ha[?25l[?25hp[?25l[?25h.[?25l[?25h*[?25l[?25h [?25l153 substitutions on 153 lines~ 204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h7[?25l[?25h.[?25l[?25h*[?25l[?25h [?25l177 substitutions on 177 lines204,1Bot204,1Bot[?25h[?25l2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^^M^M -^[[32m-- More --^[[?25h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-6609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^^M^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^^M^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^^M^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^^M^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^^M^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^^M^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^^M^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^^M^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^^M^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe -^[[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^^M^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^^M^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^^M^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^^M^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^^M^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus203,199%[?25h[?25l2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe -2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLighttningRidgeEXECB2 -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCCityEPECB -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSettupPage -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeeonCityEPECB -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeLightningRidgeEXECB4 -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCCityEPECB -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^^M^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^^M^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode^^M^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^^M^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^^M^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^^M^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^^M^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^^M^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy143,156%[?25h[?25l2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDDxe -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeNeonCityFPGA -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeNeonCityEPRP -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCCityEPECB -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCCityFPGA -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPollicy -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeNeonCityFPGA -2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeoonCityFPGA -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLighhtningRidgeEXECB4 -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLighttningRidgeEXECB3 -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitializze -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLighttningRidgeEXECB2 -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEnntry -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeLightningRidgeEXECB2 -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeLightningRidgeEXECB1 -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeoonCityEPRP -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLigghtningRidgeEXECB3 -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLiightningRidgeEXRP -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe -2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe81,113%[?25h[?25l2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeeonCityEPRP -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeLightningRidgeEXECB2 -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHHandlerRuntimeDxe -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr21,1Top[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l:[?2004h[?25h,[?25l[?25h[?25l[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h[?25l [?25h[?25l[?25hd[?25l[?25h.[?25l[?25h*[?25l[?25h{[?25l[?25h [?25l204 substitutions on 204 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCA64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxeFA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^MBB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^ME8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe5ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIoB11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^ME052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt1329CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxeC4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidgeF099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^MDEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M -A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^MB7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: -BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup72FE44FF-44FC-4653-918A-0D5E76C416D2 -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsbF80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^MBB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe7AB22C56-2510-4FD2-AC18-57394419FBABD6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxeCD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe7474A4C6-7F30-4DE1-BC68-DA5EFE615B52DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup -9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M7FD082A9-3D6B-44E3-9C31-74D6B80F965C9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreenCD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^MCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^MBC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus204,1Bot204,1Bot[?25h[?25l -204 changes; before #4 3 seconds ago2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeeonCityEPRP2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeLightningRidgeEXECB22018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA62018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHHandlerRuntimeDxe018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDDxe2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeNeonCityFPGA2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeNeonCityEPRP2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCCityEPECB2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCCityFPGA2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPollicy2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeNeonCityFPGA2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeoonCityFPGA2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLighhtningRidgeEXECB42018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLighttningRidgeEXECB32018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitializze2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLighttningRidgeEXECB22018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEnntry2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:1,1Top[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l20[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l30[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l40[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h4[?25l[?25h[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h [?25l204 substitutions on 204 lines &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo - &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe - &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo - &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe - &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M - &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe - &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform - &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit - &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: - &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup &{72FE44FF-44FC-4653-918A-0D5E76C416D2 - &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime - &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe &{7AB22C56-2510-4FD2-AC18-57394419FBAB &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe - &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup - &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M - &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe - &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus - &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus204,2Bot204,2Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines&{7D77B32E-BAB2-4CC7-8378-7550513F3FCA&{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD&{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo&{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe&{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M&{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe&{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M&{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe&{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M&{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole&{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M&{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe&{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe&{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo&{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M&{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M&{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe&{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy&{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M&{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13&{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo&{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe&{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge&{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer&{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe&{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:&{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M&{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDim&{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:&{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M&{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe&{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe&{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe&{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M&{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe&{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform&{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize&{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus&{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit&{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M&{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup&{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M&{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M&{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:&{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup&{72FE44FF-44FC-4653-918A-0D5E76C416D2&{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb&{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe&{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M&{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime&{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe&{7AB22C56-2510-4FD2-AC18-57394419FBAB&{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M&{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M&{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir&{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF&{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M&{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M&{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe&{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe&{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe&{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52&{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup&{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M&{7FD082A9-3D6B-44E3-9C31-74D6B80F965C&{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen&{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M&{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M&{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13&{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M&{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig&{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57&{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe&{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe&{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M&{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport&{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE&{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe&{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M&{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus&{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCA64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxeFA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^MBB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^ME8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIoB11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^ME052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt1329CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxeC4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidgeF099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^MDEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^MA210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxeD93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^MB7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup72FE44FF-44FC-4653-918A-0D5E76C416D21015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsbF80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^MBB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntimeDC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe7AB22C56-2510-4FD2-AC18-57394419FBAD6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFF8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxeCD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe7474A4C6-7F30-4DE1-BC68-DA5EFE615B52DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M7FD082A9-3D6B-44E3-9C31-74D6B80F965C9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreenCD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^MCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^MBC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h.[?25l[?25h*[?25l[?25h [?25l188 substitutions on 188 lines204,1Bot204,1Bot[?25h[?25l[?25h[?25lF099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 -5038E34E-0774-47A0-A5EF-4B94AF1A43DA -CF6BCADD-D4C4-4095-B2BC-417D7247890A -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 -5038F34E-0774-47A0-A5EF-4B94AF1A43DA -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 -A210F973-229D-4F4D-AA37-9895E6C9EABA -3237418A-478C-4700-B59F-768E2CCBC726 -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 -61422D26-81EC-47FF-B6CF-939EAEE73FBA -87AB821C-79B8-4EF6-A913-21D22063F55F -3FFCAE95-23CF-4967-94F5-16352F68E43B -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 -63809859-F029-41C3-9F34-EEEB9EA787A5 -6372357A-06D7-43EF-B55C-1964F3DD6916 -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 -B7EE4835-84CE-4B15-BF52-2D11574CE470 -217828C1-DA75-5BC1-7B58-91954FED0101 -BCEA6548-E204-4486-8F2A-36E13C7838CE -72FE44FF-44FC-4653-918A-0D5E76C416D2 -1015EA63-7421-417D-BB51-E5193061C551 -F80697E9-7FD6-4665-8646-88E33EF71DFC -9E8DD95D-868B-41A4-966C-107338C291BB -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B -7AB22C56-2510-4FD2-AC18-57394419FBAB -D6207835-B7E3-4FF8-B276-CDE3E52206BC -45055A79-B385-4705-A3AC-11CE99A1CB47 -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 -22EA234F-E72A-11E4-91F9-28D2447C4829 -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 -DC92A37B-4AC5-4117-AABB-019FFC0FD06A -9AE51047-E0B9-4A50-9E72-84E359D20189 -7FD082A9-3D6B-44E3-9C31-74D6B80F965C -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 -CD7C839D-0521-4B26-9476-9FF2CB70649A -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A -0718AD81-F26A-4850-A6EC-F268E309D707 -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 -9BB65D37-8CA8-4789-BE45-EE18536EE089 -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 -00CC581D-5687-47C8-96C3-44EB1240A9F6 -DE141A05-FA40-432D-9631-5E3E990F44D5 -9B680FCE-AD6B-4F3A-B60B-F59899003443 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 -634E8DB5-C432-43BE-A653-9CA2922CC458 -BB65942B-521F-4EC3-BAF9-A92540CF60D2 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E -86CDDF93-4872-4597-8AF9-A35AE4D3725F -AE587172-CC15-48E1-8BE0-29DDF05C6A1F -580DD900-385D-11D7-883A-00500473D4EB -43788BEB-638F-434C-8A84-46D33A589E76 -24A44CAF-0BF2-4514-90C4-C794B3E778F5 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 -BDCE85BB-FBAA-4F4E-9264-501A2C249581 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E -8F5A2E02-538C-4D59-B920-C4786ACBC552 -9D0CEA63-745B-417D-BBA4-E5193061C907 -7D77B32E-BAB2-4CC7-8378-7550513F3FCA -64A11188-5B86-4F59-A702-73365896E65E125,135%[?25h[?25l00CC581D-5687-47C8-96C3-44EB1240A9F6 -DE141A05-FA40-432D-9631-5E3E990F44D5 -9B680FCE-AD6B-4F3A-B60B-F59899003443 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 -634E8DB5-C432-43BE-A653-9CA2922CC458 -BB65942B-521F-4EC3-BAF9-A92540CF60D2 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E -86CDDF93-4872-4597-8AF9-A35AE4D3725F -AE587172-CC15-48E1-8BE0-29DDF05C6A1F -580DD900-385D-11D7-883A-00500473D4EB -43788BEB-638F-434C-8A84-46D33A589E76 -24A44CAF-0BF2-4514-90C4-C794B3E778F5 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 -BDCE85BB-FBAA-4F4E-9264-501A2C249581 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E -8F5A2E02-538C-4D59-B920-C4786ACBC552 -9D0CEA63-745B-417D-BBA4-E5193061C907 -7D77B32E-BAB2-4CC7-8378-7550513F3FCA -64A11188-5B86-4F59-A702-73365896E65E -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F -68D89864-C0A8-490D-BE18-C83D67240928 -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC -52C877FD-C27C-4779-B750-7880B28B4306 -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C -9BB65D37-8CA8-4789-BE45-EE18536EE089 -536DF136-BD96-4E1E-ADF5-6B637C139063 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A -25ACF158-DD61-4E64-9A49-55851E9A26C7 -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 -196CA3D8-9A5A-4735-B328-8FFC1D93D188 -E052D8A6-224A-4C32-8D37-2E0AE162364D -858EBE6F-360F-415B-B7DC-463AAEB03412 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 -4C006CD9-19BA-4617-8483-609194A1ACFC -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 -2ACA4F79-324F-4D6D-8268-A210B1537807 -C4EB3614-4986-42B9-8C0D-9FE11827890846,1Top[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l:[?2004h[?25hq[?25l[?25h,[?25l[?25h$[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25h/[?25l[?25h[?25l [?25hi[?25l[?25hx[?25l[?25h[?25l [?25hr[?25l[?25h[?25l [?25hr[?25l[?25h[?25l [?25ht[?25l[?25ha[?25l[?25hg[?25l[?25hh[?25l[?25h[?25l[?25h [?25l204 substitutions on 204 lines ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag204,2Bot204,2Bot[?25h[?25l -204 changes; before #9 0 seconds ago00CC581D-5687-47C8-96C3-44EB1240A9F6 -DE141A05-FA40-432D-9631-5E3E990F44D5 -9B680FCE-AD6B-4F3A-B60B-F59899003443 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 -634E8DB5-C432-43BE-A653-9CA2922CC458 -BB65942B-521F-4EC3-BAF9-A92540CF60D2 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E -86CDDF93-4872-4597-8AF9-A35AE4D3725F -AE587172-CC15-48E1-8BE0-29DDF05C6A1F -580DD900-385D-11D7-883A-00500473D4EB -43788BEB-638F-434C-8A84-46D33A589E76 -24A44CAF-0BF2-4514-90C4-C794B3E778F5 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 -BDCE85BB-FBAA-4F4E-9264-501A2C249581 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E -8F5A2E02-538C-4D59-B920-C4786ACBC552 -9D0CEA63-745B-417D-BBA4-E5193061C907 -7D77B32E-BAB2-4CC7-8378-7550513F3FCA -64A11188-5B86-4F59-A702-73365896E65E -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F -68D89864-C0A8-490D-BE18-C83D67240928 -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC -52C877FD-C27C-4779-B750-7880B28B4306 -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C -9BB65D37-8CA8-4789-BE45-EE18536EE089 -536DF136-BD96-4E1E-ADF5-6B637C139063 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A -25ACF158-DD61-4E64-9A49-55851E9A26C7 -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 -196CA3D8-9A5A-4735-B328-8FFC1D93D188 -E052D8A6-224A-4C32-8D37-2E0AE162364D -858EBE6F-360F-415B-B7DC-463AAEB03412 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 -4C006CD9-19BA-4617-8483-609194A1ACFC -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 -2ACA4F79-324F-4D6D-8268-A210B1537807 -C4EB3614-4986-42B9-8C0D-9FE118278908 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 -5038E34E-0774-47A0-A5EF-4B94AF1A43DA -CF6BCADD-D4C4-4095-B2BC-417D7247890A -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 -5038F34E-0774-47A0-A5EF-4B94AF1A43DA -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 -A210F973-229D-4F4D-AA37-9895E6C9EABA -3237418A-478C-4700-B59F-768E2CCBC726 -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 -61422D26-81EC-47FF-B6CF-939EAEE73FBA -87AB821C-79B8-4EF6-A913-21D22063F55F -3FFCAE95-23CF-4967-94F5-16352F68E43B -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 -63809859-F029-41C3-9F34-EEEB9EA787A5 -6372357A-06D7-43EF-B55C-1964F3DD6916 -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 -B7EE4835-84CE-4B15-BF52-2D11574CE470 -217828C1-DA75-5BC1-7B58-91954FED0101 -BCEA6548-E204-4486-8F2A-36E13C7838CE -72FE44FF-44FC-4653-918A-0D5E76C416D2 -1015EA63-7421-417D-BB51-E5193061C551 -F80697E9-7FD6-4665-8646-88E33EF71DFC -9E8DD95D-868B-41A4-966C-107338C291BB -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B -7AB22C56-2510-4FD2-AC18-57394419FBAB -D6207835-B7E3-4FF8-B276-CDE3E52206BC -45055A79-B385-4705-A3AC-11CE99A1CB47 -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 -22EA234F-E72A-11E4-91F9-28D2447C4829 -529D3F93-E8E9-4E73-B1E1-BDF6A9D501131,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25h/[?25l[?25h&[?25l[?25h[?25l [?25hr[?25l[?25h[?25l [?25hr[?25l[?25h[?25l [?25ht[?25l[?25ha[?25l[?25hg[?25l[?25h [?25l204 substitutions on 204 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag204,1Bot204,1Bot[?25h[?25l:[?2004h[?25hf[?25l[?25h [?25l"remove100" [Modified][Not edited] 204 lines --100%--204,1Bot[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" [New] 204L, 9180C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more RUN4 -[?2004lScript started on 2018-12-20 12:38:28-0800 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/t -yan7102$ make d4 -[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean -2018/12/20 12:38:32 Found 310 things -2018/12/20 12:38:32 script is ./DXECLEANER -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8) -2018/12/20 12:38:42 removed [0xc000025200] -+ echo TEST /tmp/futk925337781/1 -TEST /tmp/futk925337781/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707 -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614 -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 We are now done ...................... -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2018/12/20 12:44:44 removed [0xc0084f8b00] -+ echo TEST /tmp/futk925337781/2 -TEST /tmp/futk925337781/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 ---More--(0%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more remove -remove100 removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more remove -remove100 removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more remove100 -[?2004l00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F r r tag -580DD900-385D-11D7-883A-00500473D4EB r r tag -43788BEB-638F-434C-8A84-46D33A589E76 r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 r r tag ---More--(39%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more mMakefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ kfutvi vi vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 204L, 9180C▽ [>c]10;?]11;?00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F r r tag -580DD900-385D-11D7-883A-00500473D4EB r r tag -43788BEB-638F-434C-8A84-46D33A589E76 r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l-- INSERT --1,1Top1,1Top]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25h[?25lR2[?25h[?25lU3[?25h[?25lN4[?25h[?25l45[?25h[?25l.6[?25h[?25l47[?25h[?25l.8[?25h[?25lr9[?25h[?25lo10[?25h[?25lm1[?25h[?25l2[?25h[?25lr3[?25h[?25lv4[?25h[?25l3[?25h[?25l2[?25h[?25lf3[?25h[?25lv4[?25h[?25l1,13Top[?25h[?25l7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag205,1Bot[?25h[?25l --- INSERT --206,1Bot -206,1Bot[?25h[?25l/2[?25h[?25lt3[?25h[?25lm4[?25h[?25lp5[?25h[?25l/6[?25h[?25lr7[?25h[?25le8[?25h[?25lm9[?25h[?25lo10[?25h[?25lv1[?25h[?25le2[?25h[?25l13[?25h[?25l04[?25h[?25l05[?25h[?25l6[?25h[?25ls7[?25h[?25la8[?25h[?25lv9[?25h[?25le20[?25h[?25lr1[?25h[?25lo2[?25h[?25lm3[?25h[?25le4[?25h[?25l206,23Bot[?25h[?25l:[?2004h[?25h [?25l206,23Bot[?25h[?25l2[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" 206L, 9217C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk < remove100 -[?2004l2019/01/03 13:59:06 Empty stack -[]OK 2019/01/03 13:59:08 Found 310 things -panic: interface conversion: forth.Cell is string, not []*main.info [recovered] - panic: interface conversion: forth.Cell is string, not []*main.info - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc00696dca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x685160, 0xc008a4f230) - /usr/lib/google-golang/src/runtime/panic.go:513 +0x1b9 -main.tag(0x6de580, 0xc00000c120) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:312 +0x59b -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x6de580, 0xc00000c120, 0xc0000d8000, 0x200) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x6de580, 0xc00000c120, 0xc0000d8000, 0x200, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:545 +0x384 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk `cat remove11001` -[?2004l2019/01/03 13:59:23 Found 310 things -panic: interface conversion: forth.Cell is string, not []*main.info [recovered] - panic: interface conversion: forth.Cell is string, not []*main.info - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc010ff9ca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x685160, 0xc00696e840) - /usr/lib/google-golang/src/runtime/panic.go:513 +0x1b9 -main.tag(0x6de580, 0xc00000c120) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:312 +0x59b -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x6de580, 0xc00000c120, 0xc0000c2500, 0x2400) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x6de580, 0xc00000c120, 0xc0000c2500, 0x2400, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:526 +0x15c -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat removehead remofe1ve100 -[?2004lRUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F r r tag -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ uffutk -[?2004l2019/01/03 13:59:35 Empty stack -[]OK RUN4.4.rom fv -2019/01/03 13:59:43 Found 310 things -[310]OK 00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -panic: interface conversion: forth.Cell is string, not []*main.info [recovered] - panic: interface conversion: forth.Cell is string, not []*main.info - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc007563ca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x685160, 0xc0088acb70) - /usr/lib/google-golang/src/runtime/panic.go:513 +0x1b9 -main.tag(0x6de580, 0xc00000c160) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:312 +0x59b -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x6de580, 0xc00000c160, 0xc0088a74a0, 0x2d) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x6de580, 0xc00000c160, 0xc0088a74a0, 0x2d, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:545 +0x384 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 206L, 9217C▽ [>c]10;?]11;?RUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F r r tag -580DD900-385D-11D7-883A-00500473D4EB r r tag -43788BEB-638F-434C-8A84-46D33A589E76 r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l:[?2004h[?25h.[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h/[?25l[?25h[?25l [?25hi[?25l[?25hx[?25l[?25h[?25l [?25h [?25l205 substitutions on 205 lines64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -/tmp/remove100 ix saverom206,1Bot]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100206,1Bot[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" 206L, 9832C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': f': futk[1@u[1@t[1@k `cat remove100` ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk `cat remove100` -[?2004l2019/01/03 14:00:03 Found 310 things -2019/01/03 14:00:03 Can't convert [] to a string -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK ^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat (reverse-i-search)`': [16@h': head remove100[1@e[1@a[1@d ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ head remove100  -[?2004lRUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk RUN4.4.rom fv -[?2004l2019/01/03 14:00:38 Found 310 things -[310]OK 00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE]]OK DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP]]OK -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP]]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop]OK p[op -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop pop]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop pop pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP]]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE]]OK drop -[310]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 206L, 9832C▽ [>c]10;?]11;?RUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -/tmp/remove100 ix saverom206,1Bot[?25h[?25l2[?25h[?25l5[?25h[?25l6[?25h[?25l16[?25h[?25l9[?25h[?25l6[?25h[?25lsaverom]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" 206L, 9829C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk < remove100 -[?2004l2019/01/03 14:01:28 Empty stack -[]OK 2019/01/03 14:01:31 Found 310 things -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665 [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] 22]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665 [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] 22 [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] 67820532-7613-4DD3-9ED7-3D9BE3A7DA]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665 [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] 22 [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] 67820532-7613-4DD3-9ED7-3D9BE3A7DA [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM:: r already marked by re r 39D1EDC0-C9ED-4663-90DB-7457FF0548C5:EFI_FV_FILETYPE_MM:AmiErrorHandlerMain 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r AF516361-B4C5-436E-A7E3-A149A31B1461:EFI_FV_FILETYPE_FREEFORM: 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r 291E46D4-CA63-4D33-9857-1397C9AD7C0D:EFI_FV_FILETYPE_MM:LegacySmmSredir 39E8CA1A-7A69-4A73-834A-D06381933286:EFI_FV_FILETYPE_PEIM: C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM:: r already marked by re r 9029F23E-E1EE-40D1-9382-36DD61A63EAA:EFI_FV_FILETYPE_PEIM: 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM:: r already marked by re r BDAD7D1A-4C48-4C75-B5BC-D002D17F6397:EFI_FV_FILETYPE_PEIM: 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r 59287178-59B2-49CA-BC63-532B12EA2C53:EFI_FV_FILETYPE_MM:PchSmbusSmm 63819805-67BB-46EF-AA8D-1524A19A01E4:EFI_FV_FILETYPE_FREEFORM: 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r A630B937-3AB3-4263-85B1-A63E98F29949:EFI_FV_FILETYPE_MM:PcieErrorHandler 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport: r already marked by re r 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] 3C1DE39F-D207-408A]OK 2019/01/03 14:01:31 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:01:31 removed [0xc00b1a5580] -2019/01/03 14:01:31 Try to remove 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: (0DCA793A-EA96-42D8-BD7B-DC7F684E38C1) -2019/01/03 14:01:31 removed [0xc013ff9100] -2019/01/03 14:01:31 Try to remove 9029F23E-E1EE-40D1-9382-36DD61A63EAA:EFI_FV_FILETYPE_PEIM: (9029F23E-E1EE-40D1-9382-36DD61A63EAA) -2019/01/03 14:01:31 removed [0xc013ff9300] -2019/01/03 14:01:31 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2019/01/03 14:01:31 removed [0xc00aebe100] -2019/01/03 14:01:31 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2019/01/03 14:01:31 removed [0xc00aebe480] -2019/01/03 14:01:31 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2019/01/03 14:01:31 removed [0xc00b1a4180] -2019/01/03 14:01:31 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2019/01/03 14:01:31 removed [0xc000026500] -2019/01/03 14:01:31 Try to remove 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: (34989D8E-930A-4A95-AB04-2E6CFDFF6631) -2019/01/03 14:01:31 removed [0xc013ff8900] -2019/01/03 14:01:31 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2019/01/03 14:01:31 removed [0xc00aebe080] -2019/01/03 14:01:31 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2019/01/03 14:01:31 removed [0xc00b1a4b00] -2019/01/03 14:01:31 Try to remove BDAD7D1A-4C48-4C75-B5BC-D002D17F6397:EFI_FV_FILETYPE_PEIM: (BDAD7D1A-4C48-4C75-B5BC-D002D17F6397) -2019/01/03 14:01:31 removed [0xc00b1a5f80] -2019/01/03 14:01:31 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2019/01/03 14:01:31 removed [0xc00aebf680] -2019/01/03 14:01:31 Try to remove 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul (3B24F79D-91A0-46FF-BE29-458AE211FAC5) -2019/01/03 14:01:31 removed [0xc00b178e00] -2019/01/03 14:01:31 Try to remove F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: (F303AF22-6804-494B-A28A-A03BE7D5C742) -2019/01/03 14:01:31 removed [0xc00b179f80] -2019/01/03 14:01:31 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2019/01/03 14:01:31 removed [0xc000027700] -2019/01/03 14:01:31 Try to remove E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit (E2A74738-8934-48F5-8412-99E948C8DC1B) -2019/01/03 14:01:31 removed [0xc00b179800] -2019/01/03 14:01:31 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2019/01/03 14:01:31 removed [0xc00b1a4680] -2019/01/03 14:01:31 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2019/01/03 14:01:31 removed [0xc00aebe500] -2019/01/03 14:01:31 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2019/01/03 14:01:31 removed [0xc00aebe700] -2019/01/03 14:01:31 Try to remove 59287178-59B2-49CA-BC63-532B12EA2C53:EFI_FV_FILETYPE_MM:PchSmbusSmm (59287178-59B2-49CA-BC63-532B12EA2C53) -2019/01/03 14:01:31 removed [0xc00b178400] -2019/01/03 14:01:31 Try to remove 63819805-67BB-46EF-AA8D-1524A19A01E4:EFI_FV_FILETYPE_FREEFORM: (63819805-67BB-46EF-AA8D-1524A19A01E4) -2019/01/03 14:01:31 removed [0xc00b179d00] -2019/01/03 14:01:31 Try to remove 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: (38705437-5697-4715-85C6-29933073C212) -2019/01/03 14:01:31 removed [0xc013ff8600] -2019/01/03 14:01:31 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2019/01/03 14:01:31 removed [0xc000026e00] -2019/01/03 14:01:31 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8) -2019/01/03 14:01:31 removed [0xc000027200] -2019/01/03 14:01:31 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2019/01/03 14:01:31 removed [0xc00aebe580] -2019/01/03 14:01:31 Try to remove 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi (15CCACBE-2A4A-45ED-9EC2-53135F98AB24) -2019/01/03 14:01:31 removed [0xc00b178780] -2019/01/03 14:01:31 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2019/01/03 14:01:31 removed [0xc00b1a4a80] -2019/01/03 14:01:31 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2019/01/03 14:01:31 removed [0xc00aebe980] -2019/01/03 14:01:31 Try to remove 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell (7C04A583-9E3E-4F1C-AD65-E05268D0B4D1) -2019/01/03 14:01:31 removed [0xc00b179c80] -2019/01/03 14:01:31 Try to remove 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 (2CAD98FC-1897-4837-B313-E6F095F4F84C) -2019/01/03 14:01:31 removed [0xc00b1a5480] -2019/01/03 14:01:31 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2019/01/03 14:01:31 removed [0xc000027380] -2019/01/03 14:01:31 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2019/01/03 14:01:31 removed [0xc000027a80] -2019/01/03 14:01:31 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2019/01/03 14:01:31 removed [0xc00aebe200] -2019/01/03 14:01:31 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2019/01/03 14:01:31 removed [0xc00aebe300] -2019/01/03 14:01:31 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2019/01/03 14:01:31 removed [0xc00aebe280] -2019/01/03 14:01:31 Try to remove A630B937-3AB3-4263-85B1-A63E98F29949:EFI_FV_FILETYPE_MM:PcieErrorHandler (A630B937-3AB3-4263-85B1-A63E98F29949) -2019/01/03 14:01:31 removed [0xc00b179400] -2019/01/03 14:01:31 Try to remove 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog (60798953-1E91-46C9-B521-316623424522) -2019/01/03 14:01:31 removed [0xc00b179500] -2019/01/03 14:01:31 Try to remove 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup (9BFE0707-8174-4B8A-A5F5-556FB10E8843) -2019/01/03 14:01:31 removed [0xc00b179780] -2019/01/03 14:01:31 Try to remove 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: (4896840D-46BB-412B-A30A-A62ABFB3682F) -2019/01/03 14:01:31 removed [0xc00b1a4900] -2019/01/03 14:01:31 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2019/01/03 14:01:31 removed [0xc000027000] -2019/01/03 14:01:31 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 14:01:31 removed [0xc000026180] -2019/01/03 14:01:31 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2019/01/03 14:01:31 removed [0xc000027e80] -2019/01/03 14:01:31 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2019/01/03 14:01:31 removed [0xc00aebf700] -2019/01/03 14:01:31 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2019/01/03 14:01:31 removed [0xc000026800] -2019/01/03 14:01:31 Try to remove F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform (F5AC7057-5650-466E-B692-76A47223EFB0) -2019/01/03 14:01:31 removed [0xc00b178f80] -2019/01/03 14:01:31 Try to remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase (348C4D62-BFBD-4882-9ECE-C80BB1C4783B) -2019/01/03 14:01:31 removed [0xc000026480] -2019/01/03 14:01:31 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2019/01/03 14:01:31 removed [0xc00aebe600] -2019/01/03 14:01:31 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 14:01:31 removed [0xc00aebf500] -2019/01/03 14:01:31 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2019/01/03 14:01:31 removed [0xc000027400] -2019/01/03 14:01:31 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2019/01/03 14:01:31 removed [0xc000027c80] -2019/01/03 14:01:31 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2019/01/03 14:01:31 removed [0xc00aebfa00] -2019/01/03 14:01:31 Try to remove 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: (17088572-377F-44EF-8F4E-B09FFF46A070) -2019/01/03 14:01:31 removed [0xc00b1a4e00 0xc013ff9880] -2019/01/03 14:01:31 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2019/01/03 14:01:31 removed [0xc00aebe400] -2019/01/03 14:01:31 Try to remove E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport (E954929C-5BAC-4494-B963-3B23D4A13AD2) -2019/01/03 14:01:31 removed [0xc00b178280] -2019/01/03 14:01:31 Try to remove 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler (893BF598-FA5D-4B6C-8829-6016ECC443E7) -2019/01/03 14:01:31 removed [0xc00b179180] -2019/01/03 14:01:31 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2019/01/03 14:01:31 removed [0xc000026a80] -2019/01/03 14:01:31 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2019/01/03 14:01:31 removed [0xc00aebf100] -2019/01/03 14:01:31 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2019/01/03 14:01:31 removed [0xc00aebea00] -2019/01/03 14:01:31 Try to remove 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: (9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50) -2019/01/03 14:01:31 removed [0xc013ff9200] -2019/01/03 14:01:31 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2019/01/03 14:01:31 removed [0xc000026f80] -2019/01/03 14:01:31 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2019/01/03 14:01:31 removed [0xc000027100] -2019/01/03 14:01:31 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2019/01/03 14:01:31 removed [0xc000027f00] -2019/01/03 14:01:31 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2019/01/03 14:01:31 removed [0xc00aebec00] -2019/01/03 14:01:31 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2019/01/03 14:01:31 removed [0xc00aebf000] -2019/01/03 14:01:31 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2019/01/03 14:01:31 removed [0xc00aebfa80] -2019/01/03 14:01:31 Try to remove EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot (EA1D58A2-EA3D-4C14-928A-80A14545E681) -2019/01/03 14:01:31 removed [0xc00b178d00] -2019/01/03 14:01:31 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2019/01/03 14:01:31 removed [0xc00aebe680] -2019/01/03 14:01:31 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2019/01/03 14:01:31 removed [0xc00aebec80] -2019/01/03 14:01:31 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2019/01/03 14:01:31 removed [0xc00aebf880] -2019/01/03 14:01:31 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2019/01/03 14:01:31 removed [0xc00aebf980] -2019/01/03 14:01:31 Try to remove C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm (C56EDB22-3D78-4705-A222-BDD6BD154DA0) -2019/01/03 14:01:31 removed [0xc00b179980] -2019/01/03 14:01:31 Try to remove 40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe (40BEAB40-CECE-4909-B133-20A413AE19E9) -2019/01/03 14:01:31 removed [0xc000026700] -2019/01/03 14:01:31 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 14:01:31 removed [0xc00aebe800] -2019/01/03 14:01:31 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2019/01/03 14:01:31 removed [0xc00aebf380] -2019/01/03 14:01:31 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2019/01/03 14:01:31 removed [0xc00aebf800] -2019/01/03 14:01:31 Try to remove 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm (0C375A90-4C4C-4428-8EA0-531BE8959BF7) -2019/01/03 14:01:31 removed [0xc00aebfb80] -2019/01/03 14:01:31 Try to remove 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: (0D1ED2F7-E92B-4562-92DD-5C82EC917EAE) -2019/01/03 14:01:31 removed [0xc013ff8d80] -2019/01/03 14:01:31 Try to remove B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe (B601F8C4-43B7-4784-95B1-F4226CB40CEE) -2019/01/03 14:01:31 removed [0xc00aebed80] -2019/01/03 14:01:31 Try to remove 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler (5FB81FA3-BF65-43AD-A47B-DF70C3112B5A) -2019/01/03 14:01:31 removed [0xc00b179680] -2019/01/03 14:01:31 Try to remove 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 (4FD1BC5E-0A53-4501-B913-56D362989E13) -2019/01/03 14:01:31 removed [0xc00b1a5400] -2019/01/03 14:01:31 Try to remove DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: (DACF705C-71DF-497D-AABE-10186B2E1DDE) -2019/01/03 14:01:31 removed [0xc013ff9580] -2019/01/03 14:01:31 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2019/01/03 14:01:31 removed [0xc000027b80] -2019/01/03 14:01:31 Try to remove B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: (B41956E1-7CA2-42DB-9562-168389F0F066) -2019/01/03 14:01:31 removed [0xc013ff8480] -2019/01/03 14:01:31 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2019/01/03 14:01:31 removed [0xc000026600] -2019/01/03 14:01:31 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2019/01/03 14:01:31 removed [0xc00aebf180] -2019/01/03 14:01:31 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2019/01/03 14:01:31 removed [0xc00aebf300] -2019/01/03 14:01:31 Try to remove 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio (2486829B-D3F3-47EC-827A-FC104907FC5C) -2019/01/03 14:01:31 removed [0xc00b178900] -2019/01/03 14:01:31 Try to remove DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm (DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7) -2019/01/03 14:01:31 removed [0xc00b1a4200] -2019/01/03 14:01:31 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2019/01/03 14:01:31 removed [0xc00b1a4980] -2019/01/03 14:01:31 Try to remove DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: (DAF4BF89-CE71-4917-B522-C89D32FBC59F) -2019/01/03 14:01:31 removed [0xc00b1a4a00] -2019/01/03 14:01:31 Try to remove 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: (299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9) -2019/01/03 14:01:31 removed [0xc00b1a5d00] -2019/01/03 14:01:31 Try to remove AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: (AB8F1705-7EB6-4D08-A9B3-918BDE24F479) -2019/01/03 14:01:31 removed [0xc013ff8780] -2019/01/03 14:01:31 Try to remove 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore (52C05B14-0B98-496C-BC3B-04B50211D680) -2019/01/03 14:01:31 removed [0xc00b1a5780] -2019/01/03 14:01:31 Try to remove 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog (543323CE-9F0C-4DDF-A33C-BC3B3A5AC227) -2019/01/03 14:01:31 removed [0xc00b178800] -2019/01/03 14:01:31 Try to remove 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler (2DE648CB-3102-43CA-A02E-42E38EA5E789) -2019/01/03 14:01:31 removed [0xc00b179280] -2019/01/03 14:01:31 Try to remove 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable (750890A6-7ACF-4F4F-81BD-B400C2BEA95A) -2019/01/03 14:01:31 removed [0xc00b179b00] -2019/01/03 14:01:31 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2019/01/03 14:01:31 removed [0xc000026780] -2019/01/03 14:01:31 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2019/01/03 14:01:31 removed [0xc000026a00] -2019/01/03 14:01:31 Try to remove 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM (870E0F5A-1981-45F6-AE26-0391425CC46F) -2019/01/03 14:01:31 removed [0xc00aebff00] -2019/01/03 14:01:31 Try to remove 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: (968C1D9F-80C4-43B7-8CAE-668AA56C4E71) -2019/01/03 14:01:31 removed [0xc013ff8880] -2019/01/03 14:01:31 Try to remove F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: (F7FDE4A6-294C-493C-B50F-9734553BB757) -2019/01/03 14:01:31 removed [0xc013ff9180] -2019/01/03 14:01:31 Try to remove 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: (86D70125-BAA3-4296-A62F-602BEBBB9081) -2019/01/03 14:01:31 removed [0xc00b1a5880] -2019/01/03 14:01:31 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2019/01/03 14:01:31 removed [0xc000026380] -2019/01/03 14:01:31 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2019/01/03 14:01:31 removed [0xc000027d80] -2019/01/03 14:01:31 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2019/01/03 14:01:31 removed [0xc00aebef00] -2019/01/03 14:01:31 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2019/01/03 14:01:31 removed [0xc00aebf580] -2019/01/03 14:01:31 Try to remove 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: (709E6472-1BCD-43BD-8B6B-CD2D6D08B967) -2019/01/03 14:01:31 removed [0xc00b179e00] -2019/01/03 14:01:31 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2019/01/03 14:01:31 removed [0xc00b1a4480] -2019/01/03 14:01:31 Try to remove 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: (1BA0062E-C779-4582-8566-336AE8F78F09) -2019/01/03 14:01:31 removed [0xc013ff9c00] -2019/01/03 14:01:31 Try to remove 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer (90CB75DB-71FC-489D-AACF-943477EC7212) -2019/01/03 14:01:31 removed [0xc000026980] -2019/01/03 14:01:31 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2019/01/03 14:01:31 removed [0xc000027b00] -2019/01/03 14:01:31 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2019/01/03 14:01:31 removed [0xc000026b00] -2019/01/03 14:01:31 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2019/01/03 14:01:31 removed [0xc000026e80] -2019/01/03 14:01:31 Try to remove E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm (E21F35A8-42FF-4050-82D6-93F7CDFA7073) -2019/01/03 14:01:31 removed [0xc00b179b80] -2019/01/03 14:01:31 Try to remove DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: (DEF30E37-7AEC-4F69-91A2-CF099E2729F2) -2019/01/03 14:01:31 removed [0xc013ff8d00] -2019/01/03 14:01:31 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2019/01/03 14:01:31 removed [0xc00aebf480] -2019/01/03 14:01:31 Try to remove 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox (33FB3535-F15E-4C17-B303-5EB94595ECB6) -2019/01/03 14:01:31 removed [0xc00aebfd00] -2019/01/03 14:01:31 Try to remove 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo (37A01080-2346-4A54-9900-D22B7B687C22) -2019/01/03 14:01:31 removed [0xc00b178a80] -2019/01/03 14:01:31 Try to remove 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog (935D2F78-3A1F-4DE6-B28D-123A40DD2DEC) -2019/01/03 14:01:31 removed [0xc00b178d80] -2019/01/03 14:01:31 Try to remove EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: (EE685731-CFF3-4EE7-9388-7E63FC5A59B0) -2019/01/03 14:01:31 removed [0xc013ff8300] -2019/01/03 14:01:31 Try to remove AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 (AA7B4695-00B4-4468-AD92-99370AC031C5) -2019/01/03 14:01:31 removed [0xc000027500] -2019/01/03 14:01:31 Try to remove B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: (B894C949-A1F8-41C1-A7C0-DF523AD91C15) -2019/01/03 14:01:31 removed [0xc013ff8280] -2019/01/03 14:01:31 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2019/01/03 14:01:31 removed [0xc000027600] -2019/01/03 14:01:31 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2019/01/03 14:01:31 removed [0xc00aebe780] -2019/01/03 14:01:31 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2019/01/03 14:01:31 removed [0xc00aebf780] -2019/01/03 14:01:31 Try to remove 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: (7D113AA9-6280-48C6-BACE-DFE7668E8307) -2019/01/03 14:01:31 removed [0xc00b1a4100] -2019/01/03 14:01:31 Try to remove 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: (7ECD9C20-68B9-4A6F-B515-D64FF500B109) -2019/01/03 14:01:31 removed [0xc013ff9600] -2019/01/03 14:01:31 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2019/01/03 14:01:31 removed [0xc000026c80] -2019/01/03 14:01:31 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2019/01/03 14:01:31 removed [0xc000027e00] -2019/01/03 14:01:31 Try to remove CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard (CEF68C66-06AB-4FB3-A3ED-5FFA885B5725) -2019/01/03 14:01:31 removed [0xc00aebe900] -2019/01/03 14:01:31 Try to remove C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler (C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2) -2019/01/03 14:01:31 removed [0xc00b179100] -2019/01/03 14:01:31 Try to remove 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM: (9FE7DE69-0AEA-470A-B50A-139813649189) -2019/01/03 14:01:31 removed [0xc00b1a5200] -2019/01/03 14:01:31 Try to remove B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios (B13EDD38-684C-41ED-A305-D7B7E32497DF) -2019/01/03 14:01:31 removed [0xc00aebe880] -2019/01/03 14:01:31 Try to remove E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: (E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10) -2019/01/03 14:01:31 removed [0xc013ff8f80] -2019/01/03 14:01:31 Try to remove 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: (0EF53039-3A38-42D1-BCEC-CE966E87061A) -2019/01/03 14:01:31 removed [0xc013ff9500] -2019/01/03 14:01:31 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2019/01/03 14:01:31 removed [0xc000027780] -2019/01/03 14:01:31 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2019/01/03 14:01:31 removed [0xc000027800] -2019/01/03 14:01:31 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2019/01/03 14:01:31 removed [0xc00aebed00] -2019/01/03 14:01:31 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2019/01/03 14:01:31 removed [0xc00aebf400] -2019/01/03 14:01:31 Try to remove 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm (8F0B5301-C79B-44F1-8FD3-26D73E316700) -2019/01/03 14:01:31 removed [0xc00b178180] -2019/01/03 14:01:31 Try to remove 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: (93390241-7D4D-4986-8A06-D46C982F5ECD) -2019/01/03 14:01:31 removed [0xc00b1a5b80] -2019/01/03 14:01:31 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2019/01/03 14:01:31 removed [0xc000027880] -2019/01/03 14:01:31 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2019/01/03 14:01:31 removed [0xc00aebe380] -2019/01/03 14:01:31 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2019/01/03 14:01:31 removed [0xc00aebeb80] -2019/01/03 14:01:31 Try to remove CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: (CA9D8617-D652-403B-B6C5-BA47570116AD) -2019/01/03 14:01:31 removed [0xc013ff8800] -2019/01/03 14:01:31 Try to remove 4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm (4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B) -2019/01/03 14:01:31 removed [0xc00b178c00] -2019/01/03 14:01:31 Try to remove 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe (1807040D-5934-41A2-A088-8E0F777F71AB) -2019/01/03 14:01:31 removed [0xc00b1a4300] -2019/01/03 14:01:31 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2019/01/03 14:01:31 removed [0xc000027300] -2019/01/03 14:01:31 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2019/01/03 14:01:31 removed [0xc00aebf900] -2019/01/03 14:01:31 Try to remove 39D1EDC0-C9ED-4663-90DB-7457FF0548C5:EFI_FV_FILETYPE_MM:AmiErrorHandlerMain (39D1EDC0-C9ED-4663-90DB-7457FF0548C5) -2019/01/03 14:01:31 removed [0xc00b179300] -2019/01/03 14:01:31 Try to remove E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore (E94F54CD-81EB-47ED-AEC3-856F5DC157A9) -2019/01/03 14:01:31 removed [0xc00aebfb00] -2019/01/03 14:01:31 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2019/01/03 14:01:31 removed [0xc000026c00] -2019/01/03 14:01:31 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2019/01/03 14:01:31 removed [0xc000027080] -2019/01/03 14:01:31 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2019/01/03 14:01:31 removed [0xc00aebea80] -2019/01/03 14:01:31 Try to remove A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: (A08276EC-A0FE-4E06-8670-385336C7D093) -2019/01/03 14:01:31 removed [0xc00b179e80] -2019/01/03 14:01:31 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:01:31 removed [0xc00b1a5500] -2019/01/03 14:01:31 Try to remove CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: (CBC91F44-A4BC-4A5B-8696-703451D0B053) -2019/01/03 14:01:31 removed [0xc013ff9700] -2019/01/03 14:01:31 Try to remove AF516361-B4C5-436E-A7E3-A149A31B1461:EFI_FV_FILETYPE_FREEFORM: (AF516361-B4C5-436E-A7E3-A149A31B1461) -2019/01/03 14:01:31 removed [0xc013ff9b00] -2019/01/03 14:01:31 Try to remove D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore (D6A2CB7F-6A18-4E2F-B43B-9920A733700A) -2019/01/03 14:01:31 removed [0xc000026280] -2019/01/03 14:01:31 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2019/01/03 14:01:31 removed [0xc000027900] -2019/01/03 14:01:31 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2019/01/03 14:01:31 removed [0xc000027f80] -2019/01/03 14:01:31 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 14:01:31 removed [0xc00b1a4500] -2019/01/03 14:01:31 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2019/01/03 14:01:31 removed [0xc000026400] -2019/01/03 14:01:31 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2019/01/03 14:01:31 removed [0xc00b1a4580] -2019/01/03 14:01:31 Try to remove 291E46D4-CA63-4D33-9857-1397C9AD7C0D:EFI_FV_FILETYPE_MM:LegacySmmSredir (291E46D4-CA63-4D33-9857-1397C9AD7C0D) -2019/01/03 14:01:31 removed [0xc00b178980] -2019/01/03 14:01:31 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2019/01/03 14:01:31 removed [0xc00b1a5380] -2019/01/03 14:01:31 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2019/01/03 14:01:31 removed [0xc00aebf600] -2019/01/03 14:01:31 Try to remove DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: (DAC2B117-B5FB-4964-A312-0DCC77061B9B) -2019/01/03 14:01:31 removed [0xc00b1a4e80] -2019/01/03 14:01:31 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2019/01/03 14:01:31 removed [0xc000027c00] -2019/01/03 14:01:31 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2019/01/03 14:01:31 removed [0xc00aebe000] -2019/01/03 14:01:31 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2019/01/03 14:01:31 removed [0xc00aebf280] -2019/01/03 14:01:31 Try to remove 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: (17088572-377F-44EF-8F4E-B09FFF46A070) -Can't happen: &{17088572-377F-44EF-8F4E-B09FFF46A070 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 1 map[r:r]} not found -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665 [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] 22 [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] 67820532-7613-4DD3-9ED7-3D9BE3A7DA [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM:: r already marked by re r 39D1EDC0-C9ED-4663-90DB-7457FF0548C5:EFI_FV_FILETYPE_MM:AmiErrorHandlerMain 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r AF516361-B4C5-436E-A7E3-A149A31B1461:EFI_FV_FILETYPE_FREEFORM: 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r 291E46D4-CA63-4D33-9857-1397C9AD7C0D:EFI_FV_FILETYPE_MM:LegacySmmSredir 39E8CA1A-7A69-4A73-834A-D06381933286:EFI_FV_FILETYPE_PEIM: C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM:: r already marked by re r 9029F23E-E1EE-40D1-9382-36DD61A63EAA:EFI_FV_FILETYPE_PEIM: 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM:: r already marked by re r BDAD7D1A-4C48-4C75-B5BC-D002D17F6397:EFI_FV_FILETYPE_PEIM: 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r 59287178-59B2-49CA-BC63-532B12EA2C53:EFI_FV_FILETYPE_MM:PchSmbusSmm 63819805-67BB-46EF-AA8D-1524A19A01E4:EFI_FV_FILETYPE_FREEFORM: 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r A630B937-3AB3-4263-85B1-A63E98F29949:EFI_FV_FILETYPE_MM:PcieErrorHandler 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport: r already marked by re r 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] 3C1DE39F-D207-408A [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 206L, 9829C▽ [>c]10;?]11;?RUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h1[?25l[?25h7[?25l[?25h-[?25l[?25h8[?25l[?25h8[?25l[?25h5[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h-[?25l[?25h[?25l[?25h0[?25l[?25h8[?25l[?25h8[?25l[?25h5[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: 1708851,1Top[?25h[?25l64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -/tmp/remove100 saverom206,1Bot[?25h - -[?2004l[?1l>[?1049l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l -[1]+ Stopped vi remove100 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lvi remove100 -[?2004h]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?1049h[?1h=[?2004h[?12h[?12l[?25l64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -/tmp/remove100 saverom206,1Bot[?25h[?25l/[?2004h[?25hB[?25l[?25hB[?25l[?25h8[?25l[?25hC[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOPRUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag28,1Top search hit BOTTOM, continuing at TOP28,1Top[?25h[?25l529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag68,132%[?25h[?25lRUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag1,1Top[?25h[?25l2[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': f': fgu': futk < remove100 [1@t[1@kRUN4.4.rom fv ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk RUN4.4.rom fv -[?2004l2019/01/03 14:02:35 Found 310 things -[310]OK 271B424E-A4CC-4E0E-90A2-7EA484 isx  x -[310 [0xc000010e10]]OK r r tag -[310 [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb]]OK status -panic: interface conversion: forth.Cell is []string, not []*main.info [recovered] - panic: interface conversion: forth.Cell is []string, not []*main.info - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc006a33ca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x685160, 0xc008b78390) - /usr/lib/google-golang/src/runtime/panic.go:513 +0x1b9 -main.status(0x6de580, 0xc00000c120) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:301 +0x218 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x6de580, 0xc00000c120, 0xc0086ac4e8, 0x7) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x6de580, 0xc00000c120, 0xc0086ac4e8, 0x7, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:545 +0x384 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 206L, 9829C▽ [>c]10;?]11;?RUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h$[?25l[?25h/[?25l[?25h[?25l [?25hd[?25l[?25hr[?25l[?25ho[?25l[?25hp[?25l[?25h [?25l206 substitutions on 206 lines64A11188-5B86-4F59-A702-73365896E65E ix r r tag drop -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4Fdrop -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7drop -FA20568B-548B-4B2B-81EF-1BA08D4A3CECdrop -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5Fdrop -68D89864-C0A8-490D-BE18-C83D6724092drop -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EACdrop -52C877FD-C27C-4779-B750-7880B28B430drop -43E7ABDD-E352-4CFB-A230-4CDC1D350E5Cdrop -9BB65D37-8CA8-4789-BE45-EE18536EE089drop -536DF136-BD96-4E1E-ADF5-6B637C139063drop -69E6DD6D-F09E-485F-9627-EB70E9CFC82Adrop -25ACF158-DD61-4E64-9A49-55851E9A26C7drop -B11216C5-44E4-472C-ACB7-128A5A3AD7A1drop -196CA3D8-9A5A-4735-B328-8FFC1D93D188drop -E052D8A6-224A-4C32-8D37-2E0AE162364Ddrop -858EBE6F-360F-415B-B7DC-463AAEB03412drop -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78drop -4C006CD9-19BA-4617-8483-609194A1ACFCdrop -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063drop -2ACA4F79-324F-4D6D-8268-A210B1537807drop -C4EB3614-4986-42B9-8C0D-9FE118278908drop -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8drop -16271FCA-55D9-4A33-93FC-5A3EB128DEB6drop -5038E34E-0774-47A0-A5EF-4B94AF1A43DAdrop -CF6BCADD-D4C4-4095-B2BC-417D7247890Adrop -DEB0EE00-18DF-415C-AF03-74D09B0AAD87drop -5038F34E-0774-47A0-A5EF-4B94AF1A43DAdrop -018A5C7A-12EB-429D-9DEF-6FCC410B04Edrop -A210F973-229D-4F4D-AA37-9895E6C9EABAdrop -3237418A-478C-4700-B59F-768E2CCBC72drop -171F43DC-C4D9-47A6-9641-65DDCDD5AA30drop -D93DE2E3-3727-4D5B-B49F-777C93A971D3drop -61422D26-81EC-47FF-B6CF-939EAEE73FBAdrop -87AB821C-79B8-4EF6-A913-21D22063F55Fdrop -3FFCAE95-23CF-4967-94F5-16352F68E43Bdrop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7drop -63809859-F029-41C3-9F34-EEEB9EA787A5drop -6372357A-06D7-43EF-B55C-1964F3DD6916drop -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666drop -8C9D8537-9479-40F4-8C82-70D1EF5F7353drop -B7EE4835-84CE-4B15-BF52-2D11574CE470drop -217828C1-DA75-5BC1-7B58-91954FED0101drop -BCEA6548-E204-4486-8F2A-36E13C7838CEdrop -72FE44FF-44FC-4653-918A-0D5E76C416D2drop -1015EA63-7421-417D-BB51-E5193061C551drop -F80697E9-7FD6-4665-8646-88E33EF71DFCdrop -9E8DD95D-868B-41A4-966C-107338C291BBdrop -BB1FBD4F-2E30-4793-9BED-74F672BC8FFEdrop -DC3641B8-2FA8-4ED3-BC1F-F9962A03454Bdrop -7AB22C56-2510-4FD2-AC18-57394419FBABdrop -D6207835-B7E3-4FF8-B276-CDE3E52206BCdrop -45055A79-B385-4705-A3AC-11CE99A1CB47drop -4A3602BC-1A05-4C82-99B4-588CD2A32CD5drop -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFdrop -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4drop -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9drop -22EA234F-E72A-11E4-91F9-28D2447C4829drop -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113drop -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600drop -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52drop -DC92A37B-4AC5-4117-AABB-019FFC0FD06Adrop -9AE51047-E0B9-4A50-9E72-84E359D20189drop -7FD082A9-3D6B-44E3-9C31-74D6B80F965Cdrop -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36drop -CD7C839D-0521-4B26-9476-9FF2CB70649Adrop -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109drop -67820532-7613-4DD3-9ED7-3D9BE3A7DA63drop -E6DC9900-CCF6-452B-85FA-C7F1E52F0152drop -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4drop -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57drop -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4Adrop -0718AD81-F26A-4850-A6EC-F268E309D707drop -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768drop -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0drop -4551F2F5-C684-4F27-936F-C7B04A5C5FF1drop -5AAB83E5-F027-4CA7-BFD0-16358CC9E453drop -9BB65D37-8CA8-4789-BE45-EE18536EE089drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7drop -/tmp/remove100 saverom drop206,1Bot]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100206,1Bot[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" 206L, 10859C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': f': futk RUN4.4.rom fv[1@u[1@t< remove100  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk < remove100  -[?2004l2019/01/03 14:03:16 Empty stack -[]OK 2019/01/03 14:03:19 Found 310 things -[AE587172-CC15-48]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421-]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r]]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r]]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996 CD3BAFB6-5]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996 CD3BAFB6-5 [0xc00ff96b40] r r t]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996 CD3BAFB6-5 [0xc00ff96b40] r r t 3C1DE39F-D207-408A-AACC-731]OK 2019/01/03 14:03:19 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2019/01/03 14:03:19 removed [0xc00aeca300] -2019/01/03 14:03:19 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2019/01/03 14:03:19 removed [0xc000027e00] -2019/01/03 14:03:19 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2019/01/03 14:03:19 removed [0xc00aeca280] -2019/01/03 14:03:19 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2019/01/03 14:03:19 removed [0xc00aecba80] -2019/01/03 14:03:19 Try to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe (BDCE85BB-FBAA-4F4E-9264-501A2C249581) -2019/01/03 14:03:19 removed [0xc000026d80] -2019/01/03 14:03:19 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2019/01/03 14:03:19 removed [0xc00aecab80] -2019/01/03 14:03:19 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2019/01/03 14:03:19 removed [0xc008368b00] -2019/01/03 14:03:19 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:03:19 removed [0xc008369500] -2019/01/03 14:03:19 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2019/01/03 14:03:19 removed [0xc00aeca480] -2019/01/03 14:03:19 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2019/01/03 14:03:19 removed [0xc000027080] -2019/01/03 14:03:19 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2019/01/03 14:03:19 removed [0xc000026500] -2019/01/03 14:03:19 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2019/01/03 14:03:19 removed [0xc00aecb580] -2019/01/03 14:03:19 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2019/01/03 14:03:19 removed [0xc000027f00] -2019/01/03 14:03:19 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2019/01/03 14:03:19 removed [0xc008368480] -2019/01/03 14:03:19 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2019/01/03 14:03:19 removed [0xc00aecb000] -2019/01/03 14:03:19 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2019/01/03 14:03:19 removed [0xc000027b00] -2019/01/03 14:03:19 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2019/01/03 14:03:19 removed [0xc00aeca000] -2019/01/03 14:03:19 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2019/01/03 14:03:19 removed [0xc000027f80] -2019/01/03 14:03:19 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2019/01/03 14:03:19 removed [0xc000026c80] -2019/01/03 14:03:19 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2019/01/03 14:03:19 removed [0xc00aeca980] -2019/01/03 14:03:19 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2019/01/03 14:03:19 removed [0xc00aecb180] -2019/01/03 14:03:19 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2019/01/03 14:03:19 removed [0xc00aeca080] -2019/01/03 14:03:19 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2019/01/03 14:03:19 removed [0xc00aecab00] -2019/01/03 14:03:19 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2019/01/03 14:03:19 removed [0xc00aecb600] -2019/01/03 14:03:19 Try to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 (D6207835-B7E3-4FF8-B276-CDE3E52206BC) -2019/01/03 14:03:19 removed [0xc00aeca180] -2019/01/03 14:03:19 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2019/01/03 14:03:19 removed [0xc00aecaf00] -2019/01/03 14:03:19 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2019/01/03 14:03:19 removed [0xc00aecb300] -2019/01/03 14:03:19 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2019/01/03 14:03:19 removed [0xc00aeca500] -2019/01/03 14:03:19 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2019/01/03 14:03:19 removed [0xc00aecb400] -2019/01/03 14:03:19 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2019/01/03 14:03:19 removed [0xc008368980] -2019/01/03 14:03:19 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2019/01/03 14:03:19 removed [0xc000026800] -2019/01/03 14:03:19 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2019/01/03 14:03:19 removed [0xc000027380] -2019/01/03 14:03:19 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2019/01/03 14:03:19 removed [0xc00aecac80] -2019/01/03 14:03:19 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2019/01/03 14:03:19 removed [0xc000027300] -2019/01/03 14:03:19 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2019/01/03 14:03:19 removed [0xc000027b80] -2019/01/03 14:03:19 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2019/01/03 14:03:19 removed [0xc000026780] -2019/01/03 14:03:19 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2019/01/03 14:03:19 removed [0xc000026f80] -2019/01/03 14:03:19 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2019/01/03 14:03:19 removed [0xc000027c80] -2019/01/03 14:03:19 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2019/01/03 14:03:19 removed [0xc000026a80] -2019/01/03 14:03:19 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 14:03:19 removed [0xc00aeca800] -2019/01/03 14:03:19 Try to remove DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm (DEB0EE00-18DF-415C-AF03-74D09B0AAD87) -2019/01/03 14:03:19 removed [0xc00aecaf80] -2019/01/03 14:03:19 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2019/01/03 14:03:19 removed [0xc00aecb900] -2019/01/03 14:03:19 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2019/01/03 14:03:19 removed [0xc00aeca380] -2019/01/03 14:03:19 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2019/01/03 14:03:19 removed [0xc00aeca700] -2019/01/03 14:03:19 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2019/01/03 14:03:19 removed [0xc00aecad00] -2019/01/03 14:03:19 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2019/01/03 14:03:19 removed [0xc00aecb680] -2019/01/03 14:03:19 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2019/01/03 14:03:19 removed [0xc00aecb700] -2019/01/03 14:03:19 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2019/01/03 14:03:19 removed [0xc00aecb800] -2019/01/03 14:03:19 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2019/01/03 14:03:19 removed [0xc00aeca100] -2019/01/03 14:03:19 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 14:03:19 removed [0xc00aecb500] -2019/01/03 14:03:19 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2019/01/03 14:03:19 removed [0xc00aecac00] -2019/01/03 14:03:19 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2019/01/03 14:03:19 removed [0xc000027800] -2019/01/03 14:03:19 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2019/01/03 14:03:19 removed [0xc008369380] -2019/01/03 14:03:19 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2019/01/03 14:03:19 removed [0xc000027700] -2019/01/03 14:03:19 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2019/01/03 14:03:19 removed [0xc000026c00] -2019/01/03 14:03:19 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2019/01/03 14:03:19 removed [0xc00aeca580] -2019/01/03 14:03:19 Try to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP (74346897-9E0C-4B41-BF1F-BAA1ECB85DA6) -2019/01/03 14:03:19 removed [0xc000027d00] -2019/01/03 14:03:19 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:03:19 removed [0xc008369580] -2019/01/03 14:03:19 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2019/01/03 14:03:19 removed [0xc00aeca780] -2019/01/03 14:03:19 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2019/01/03 14:03:19 removed [0xc008368680] -2019/01/03 14:03:19 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2019/01/03 14:03:19 removed [0xc000027780] -2019/01/03 14:03:19 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 14:03:19 removed [0xc000026180] -2019/01/03 14:03:19 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2019/01/03 14:03:19 removed [0xc000027a80] -2019/01/03 14:03:19 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2019/01/03 14:03:19 removed [0xc00aeca600] -2019/01/03 14:03:19 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2019/01/03 14:03:19 removed [0xc00aecb880] -2019/01/03 14:03:19 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2019/01/03 14:03:19 removed [0xc000027100] -2019/01/03 14:03:19 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2019/01/03 14:03:19 removed [0xc000027900] -2019/01/03 14:03:19 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2019/01/03 14:03:19 removed [0xc00aeca680] -2019/01/03 14:03:19 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2019/01/03 14:03:19 removed [0xc008368a80] -2019/01/03 14:03:19 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2019/01/03 14:03:19 removed [0xc000027000] -2019/01/03 14:03:19 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2019/01/03 14:03:19 removed [0xc00aecb480] -2019/01/03 14:03:19 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2019/01/03 14:03:19 removed [0xc008368180] -2019/01/03 14:03:19 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2019/01/03 14:03:19 removed [0xc000026b00] -2019/01/03 14:03:19 Try to remove DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe (DE5FC8BF-06ED-4DC5-BA9D-29F711699A85) -2019/01/03 14:03:19 removed [0xc00aecb200] -2019/01/03 14:03:19 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2019/01/03 14:03:19 removed [0xc000026e00] -2019/01/03 14:03:19 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 14:03:19 removed [0xc008368500] -2019/01/03 14:03:19 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2019/01/03 14:03:19 removed [0xc000027600] -2019/01/03 14:03:19 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2019/01/03 14:03:19 removed [0xc000027c00] -2019/01/03 14:03:19 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2019/01/03 14:03:19 removed [0xc00aeca200] -2019/01/03 14:03:19 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2019/01/03 14:03:19 removed [0xc00aecaa00] -2019/01/03 14:03:19 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2019/01/03 14:03:19 removed [0xc000026400] -2019/01/03 14:03:19 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2019/01/03 14:03:19 removed [0xc000027400] -2019/01/03 14:03:19 Try to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup (DC92A37B-4AC5-4117-AABB-019FFC0FD06A) -2019/01/03 14:03:19 removed [0xc000027980] -2019/01/03 14:03:19 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2019/01/03 14:03:19 removed [0xc000027e80] -2019/01/03 14:03:19 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2019/01/03 14:03:19 removed [0xc00aecb100] -2019/01/03 14:03:19 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2019/01/03 14:03:19 removed [0xc000027d80] -2019/01/03 14:03:19 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2019/01/03 14:03:19 removed [0xc00aecb380] -2019/01/03 14:03:19 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2019/01/03 14:03:19 removed [0xc00aecb780] -2019/01/03 14:03:19 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2019/01/03 14:03:19 removed [0xc000027880] -2019/01/03 14:03:19 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2019/01/03 14:03:19 removed [0xc000026380] -2019/01/03 14:03:19 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2019/01/03 14:03:19 removed [0xc00aecba00] -2019/01/03 14:03:19 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2019/01/03 14:03:19 removed [0xc008368580] -2019/01/03 14:03:19 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2019/01/03 14:03:19 removed [0xc000026e80] -2019/01/03 14:03:19 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2019/01/03 14:03:19 removed [0xc000026a00] -2019/01/03 14:03:19 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2019/01/03 14:03:19 removed [0xc000026600] -2019/01/03 14:03:19 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2019/01/03 14:03:19 removed [0xc00aecb980] -2019/01/03 14:03:19 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2019/01/03 14:03:19 removed [0xc00aecb280] -2019/01/03 14:03:19 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2019/01/03 14:03:19 removed [0xc00aecaa80] -2019/01/03 14:03:19 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2019/01/03 14:03:19 removed [0xc00aeca400] -[AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996 CD3BAFB6-5 [0xc00ff96b40] r r t]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': c': futk `cat remove100`[1@a[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk `cat remove100` -[?2004l2019/01/03 14:03:43 Found 310 things -2019/01/03 14:03:43 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2019/01/03 14:03:43 removed [0xc00002f300] -2019/01/03 14:03:43 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2019/01/03 14:03:43 removed [0xc00002e400] -2019/01/03 14:03:43 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2019/01/03 14:03:43 removed [0xc00002eb00] -2019/01/03 14:03:43 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2019/01/03 14:03:43 removed [0xc009dc4180] -2019/01/03 14:03:43 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2019/01/03 14:03:43 removed [0xc00002ff00] -2019/01/03 14:03:43 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2019/01/03 14:03:43 removed [0xc008178500] -2019/01/03 14:03:43 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2019/01/03 14:03:43 removed [0xc008178600] -2019/01/03 14:03:43 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2019/01/03 14:03:43 removed [0xc008178700] -2019/01/03 14:03:43 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2019/01/03 14:03:43 removed [0xc008179a80] -2019/01/03 14:03:43 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2019/01/03 14:03:43 removed [0xc008179980] -2019/01/03 14:03:43 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2019/01/03 14:03:43 removed [0xc008179100] -2019/01/03 14:03:43 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2019/01/03 14:03:43 removed [0xc008178100] -2019/01/03 14:03:43 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2019/01/03 14:03:43 removed [0xc008178d00] -2019/01/03 14:03:43 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2019/01/03 14:03:43 removed [0xc008178b00] -2019/01/03 14:03:43 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2019/01/03 14:03:43 removed [0xc00002f600] -2019/01/03 14:03:43 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2019/01/03 14:03:43 removed [0xc008179480] -2019/01/03 14:03:43 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2019/01/03 14:03:43 removed [0xc008178080] -2019/01/03 14:03:43 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2019/01/03 14:03:43 removed [0xc008178680] -2019/01/03 14:03:43 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2019/01/03 14:03:43 removed [0xc00002fd80] -2019/01/03 14:03:43 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2019/01/03 14:03:43 removed [0xc008179900] -2019/01/03 14:03:43 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2019/01/03 14:03:43 removed [0xc008178b80] -2019/01/03 14:03:43 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2019/01/03 14:03:43 removed [0xc008179180] -2019/01/03 14:03:43 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2019/01/03 14:03:43 removed [0xc00002f080] -2019/01/03 14:03:43 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2019/01/03 14:03:43 removed [0xc00002ec80] -2019/01/03 14:03:43 Try to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe (BDCE85BB-FBAA-4F4E-9264-501A2C249581) -2019/01/03 14:03:43 removed [0xc00002ed80] -2019/01/03 14:03:43 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2019/01/03 14:03:43 removed [0xc00002f800] -2019/01/03 14:03:43 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2019/01/03 14:03:43 removed [0xc008179300] -2019/01/03 14:03:43 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2019/01/03 14:03:43 removed [0xc008178380] -2019/01/03 14:03:43 Try to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 (D6207835-B7E3-4FF8-B276-CDE3E52206BC) -2019/01/03 14:03:43 removed [0xc008178180] -2019/01/03 14:03:43 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2019/01/03 14:03:43 removed [0xc008179580] -2019/01/03 14:03:43 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 14:03:43 removed [0xc009dc4500] -2019/01/03 14:03:43 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2019/01/03 14:03:43 removed [0xc009dc4a80] -2019/01/03 14:03:43 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2019/01/03 14:03:43 removed [0xc008178a80] -2019/01/03 14:03:43 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2019/01/03 14:03:43 removed [0xc00002f400] -2019/01/03 14:03:43 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2019/01/03 14:03:43 removed [0xc008178a00] -2019/01/03 14:03:43 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2019/01/03 14:03:43 removed [0xc008178780] -2019/01/03 14:03:43 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2019/01/03 14:03:43 removed [0xc008178f00] -2019/01/03 14:03:43 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2019/01/03 14:03:43 removed [0xc008179280] -2019/01/03 14:03:43 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2019/01/03 14:03:43 removed [0xc008179800] -2019/01/03 14:03:43 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2019/01/03 14:03:43 removed [0xc008179a00] -2019/01/03 14:03:43 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:03:43 removed [0xc009dc5580] -2019/01/03 14:03:43 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2019/01/03 14:03:43 removed [0xc008178280] -2019/01/03 14:03:43 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2019/01/03 14:03:43 removed [0xc008178580] -2019/01/03 14:03:43 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2019/01/03 14:03:43 removed [0xc008179700] -2019/01/03 14:03:43 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2019/01/03 14:03:43 removed [0xc00002fc80] -2019/01/03 14:03:43 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2019/01/03 14:03:43 removed [0xc00002f000] -2019/01/03 14:03:43 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:03:43 removed [0xc009dc5500] -2019/01/03 14:03:43 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2019/01/03 14:03:43 removed [0xc00002fe80] -2019/01/03 14:03:43 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2019/01/03 14:03:43 removed [0xc009dc4680] -2019/01/03 14:03:43 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2019/01/03 14:03:43 removed [0xc008178c00] -2019/01/03 14:03:43 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2019/01/03 14:03:43 removed [0xc00002ea00] -2019/01/03 14:03:43 Try to remove DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe (DE5FC8BF-06ED-4DC5-BA9D-29F711699A85) -2019/01/03 14:03:43 removed [0xc008179200] -2019/01/03 14:03:43 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2019/01/03 14:03:43 removed [0xc008179600] -2019/01/03 14:03:43 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2019/01/03 14:03:43 removed [0xc008179780] -2019/01/03 14:03:43 Try to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup (DC92A37B-4AC5-4117-AABB-019FFC0FD06A) -2019/01/03 14:03:43 removed [0xc00002f980] -2019/01/03 14:03:43 Try to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP (74346897-9E0C-4B41-BF1F-BAA1ECB85DA6) -2019/01/03 14:03:43 removed [0xc00002fd00] -2019/01/03 14:03:43 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2019/01/03 14:03:43 removed [0xc00002fe00] -2019/01/03 14:03:43 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2019/01/03 14:03:43 removed [0xc008178300] -2019/01/03 14:03:43 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2019/01/03 14:03:43 removed [0xc00002ee80] -2019/01/03 14:03:43 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2019/01/03 14:03:43 removed [0xc00002e500] -2019/01/03 14:03:43 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2019/01/03 14:03:43 removed [0xc00002f780] -2019/01/03 14:03:43 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2019/01/03 14:03:43 removed [0xc008178400] -2019/01/03 14:03:43 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2019/01/03 14:03:43 removed [0xc009dc4580] -2019/01/03 14:03:43 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2019/01/03 14:03:43 removed [0xc00002e780] -2019/01/03 14:03:43 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2019/01/03 14:03:43 removed [0xc00002f380] -2019/01/03 14:03:43 Try to remove DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm (DEB0EE00-18DF-415C-AF03-74D09B0AAD87) -2019/01/03 14:03:43 removed [0xc008178f80] -2019/01/03 14:03:43 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 14:03:43 removed [0xc008179500] -2019/01/03 14:03:43 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2019/01/03 14:03:43 removed [0xc00002fa80] -2019/01/03 14:03:43 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2019/01/03 14:03:43 removed [0xc00002e380] -2019/01/03 14:03:43 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2019/01/03 14:03:43 removed [0xc008179880] -2019/01/03 14:03:43 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2019/01/03 14:03:43 removed [0xc008178000] -2019/01/03 14:03:43 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2019/01/03 14:03:43 removed [0xc008178480] -2019/01/03 14:03:43 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2019/01/03 14:03:43 removed [0xc008179400] -2019/01/03 14:03:43 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2019/01/03 14:03:43 removed [0xc008179380] -2019/01/03 14:03:43 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2019/01/03 14:03:43 removed [0xc009dc4480] -2019/01/03 14:03:43 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2019/01/03 14:03:43 removed [0xc009dc4880] -2019/01/03 14:03:43 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2019/01/03 14:03:43 removed [0xc00002f100] -2019/01/03 14:03:43 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2019/01/03 14:03:43 removed [0xc00002f700] -2019/01/03 14:03:43 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2019/01/03 14:03:43 removed [0xc008179680] -2019/01/03 14:03:43 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2019/01/03 14:03:43 removed [0xc00002ec00] -2019/01/03 14:03:43 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2019/01/03 14:03:43 removed [0xc008178980] -2019/01/03 14:03:43 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2019/01/03 14:03:43 removed [0xc00002f900] -2019/01/03 14:03:43 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2019/01/03 14:03:43 removed [0xc008178200] -2019/01/03 14:03:43 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2019/01/03 14:03:43 removed [0xc009dc5380] -2019/01/03 14:03:43 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2019/01/03 14:03:43 removed [0xc00002ed00] -2019/01/03 14:03:43 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2019/01/03 14:03:43 removed [0xc00002f880] -2019/01/03 14:03:43 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2019/01/03 14:03:43 removed [0xc00002fb80] -2019/01/03 14:03:43 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 14:03:43 removed [0xc008178800] -2019/01/03 14:03:43 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2019/01/03 14:03:43 removed [0xc00002e800] -2019/01/03 14:03:43 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2019/01/03 14:03:43 removed [0xc009dc4980] -2019/01/03 14:03:43 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2019/01/03 14:03:43 removed [0xc00002ff80] -2019/01/03 14:03:43 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2019/01/03 14:03:43 removed [0xc008179000] -2019/01/03 14:03:43 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2019/01/03 14:03:43 removed [0xc008178c80] -2019/01/03 14:03:43 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2019/01/03 14:03:43 removed [0xc00002ef80] -2019/01/03 14:03:43 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2019/01/03 14:03:43 removed [0xc00002ee00] -2019/01/03 14:03:43 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2019/01/03 14:03:43 removed [0xc00002fb00] -2019/01/03 14:03:43 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 14:03:43 removed [0xc00002e180] -2019/01/03 14:03:43 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2019/01/03 14:03:43 removed [0xc00002ea80] -2019/01/03 14:03:43 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2019/01/03 14:03:43 removed [0xc00002fc00] -2019/01/03 14:03:49 Empty stack -[]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat remove100 -[?2004lRUN4.4.rom fv drop -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag drop -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag drop -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag drop -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag drop -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag drop -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag drop -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag drop -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag drop -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag drop -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag drop -580DD900-385D-11D7-883A-00500473D4EB ix r r tag drop -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag drop -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag drop -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag drop -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag drop -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag drop -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag drop -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag drop -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag drop -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag drop -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag drop -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag drop -64A11188-5B86-4F59-A702-73365896E65E ix r r tag drop -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag drop -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag drop -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag drop -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag drop -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag drop -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag drop -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag drop -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag drop -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag drop -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag drop -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag drop -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag drop -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag drop -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag drop -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag drop -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag drop -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag drop -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag drop -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag drop -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag drop -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag drop -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag drop -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag drop -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag drop -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag drop -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag drop -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag drop -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag drop -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag drop -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag drop -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag drop -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag drop -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag drop -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag drop -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag drop -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag drop -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag drop -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag drop -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag drop -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag drop -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag drop -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag drop -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag drop -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag drop -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag drop -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag drop -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag drop -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag drop -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag drop -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag drop -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag drop -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag drop -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag drop -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag drop -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag drop -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag drop -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag drop -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag drop -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag drop -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag drop -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag drop -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag drop -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag drop -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag drop -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag drop -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag drop -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag drop -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag drop -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag drop -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag drop -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag drop -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag drop -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag drop -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag drop -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag drop -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag drop -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag drop -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag drop -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag drop -580DD900-385D-11D7-883A-00500473D4EB ix r r tag drop -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag drop -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag drop -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag drop -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag drop -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag drop -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag drop -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag drop -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag drop -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag drop -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag drop -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag drop -64A11188-5B86-4F59-A702-73365896E65E ix r r tag drop -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag drop -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag drop -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag drop -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag drop -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag drop -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag drop -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag drop -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag drop -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag drop -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag drop -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag drop -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag drop -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag drop -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag drop -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag drop -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag drop -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag drop -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag drop -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag drop -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag drop -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag drop -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag drop -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag drop -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag drop -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag drop -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag drop -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag drop -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag drop -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag drop -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag drop -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag drop -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag drop -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag drop -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag drop -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag drop -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag drop -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag drop -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag drop -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag drop -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag drop -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag drop -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag drop -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag drop -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag drop -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag drop -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag drop -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag drop -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag drop -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag drop -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag drop -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag drop -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag drop -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag drop -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag drop -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag drop -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag drop -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag drop -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag drop -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag drop -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag drop -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag drop -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag drop -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag drop -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag drop -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag drop -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag drop -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag drop -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag drop -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag drop -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -/tmp/remove100 saverom drop -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l /tmp/remove100 -[?2004l-rw-r--r-- 1 rminnich primarygroup 33554432 Jan 3 14:03 /tmp/remove100 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/remove100 fv c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l0,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l8,0-1[?25h[?25l:[?2004h[?25h2[?25l[?25h0[?25l[?25hl[?25l[?25h.[?25l[?25h[?25l[?25h[?25l[?25h,[?25l[?25h.[?25l[?25ht[?25l[?25h.[?25l[?25h [?25l9 more linesi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux37,0-1Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile 9 more lines37,0-1Top[?25h[?25l6,1-8[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l29,1 [?25h[?25l-- INSERT --29,1Top[?25h[?25lbi:2[?25h[?25lii:3[?25h[?25lgi:4[?25h[?25l29,3Top[?25h[?25l30,1-8[?25h[?25l1[?25h[?25l2[?25h[?25l2-9[?25h[?25l3-10[?25h[?25l4-11[?25h[?25l5-12[?25h[?25l6-13[?25h[?25l7-14[?25h[?25l8-15[?25h[?25l9-16[?25h[?25l$(GOPATH)iit g10-17[?25h[?25l(GOPATH)iit g1-18[?25h[?25l2-19[?25h[?25l3-20[?25h[?25l4-21[?25h[?25l5-22[?25h[?25l6-23[?25h[?25l(GOPATH)iit g7-24[?25h[?25l(GOPATH)iit g8-25[?25h[?25l9-26[?25h[?25l20-27[?25h[?25l1-28[?25h[?25l2-29[?25h[?25l3-30[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l6-33[?25h[?25l7-34[?25h[?25l8-35[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l1-38[?25h[?25l2-39[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l7-44[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l4-51[?25h[?25l5-52[?25h[?25l6-53[?25h[?25l7-54[?25h[?25l8-55[?25h[?25l9-56[?25h[?25l50-57[?25h[?25l1-58[?25h[?25l2-59[?25h[?25l3-60[?25h[?25l4-61[?25h[?25l5-62[?25h[?25l6-63[?25h[?25l7-64[?25h[?25l8-65[?25h[?25l9-66[?25h[?25l60-67[?25h[?25l1-68[?25h[?25l2-69[?25h[?25l3-70[?25h[?25l4-71[?25h[?25l5-72[?25h[?25l6-73[?25h[?25l7-74[?25h[?25l8-75[?25h[?25l9-76[?25h[?25l70-77[?25h[?25l1-78[?25h[?25l2-79[?25h[?25l3-80[?25h[?25l4-81[?25h[?25l5-82[?25h[?25l6-83[?25h[?25l-- INSERT --32,76-83 Top[?25h[?25lmgithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd7-84[?25h[?25ligithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd8-85[?25h[?25lngithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd9-86[?25h[?25ligithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd80-87[?25h[?25lmgithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd1-88[?25h[?25lagithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd2-89[?25h[?25llgithub.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd3-90[?25h[?25l github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd4-91[?25h[?25l32,83-90 Top[?25h[?25l4-91[?25h[?25lu-root/u-root/cmds/init github.com/u-root/u-rroot/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-rooot/xcmds/sshd [?25h[?25l - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.comu-root/xcmds/rush github.com/u-root/u--root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdremove SmmIpmiBmcInitialize \32,84-91 Top[?25h[?25lcmds/ls github.com/u-root/u-rooot/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lip github.com/u-root/u-rroot/cmds/elvish github.comu-root/xcmds/sshd [?25h[?25l github.com/u-root/u-root/cmds/elvish github.com/u-rroot/u-root/xcmds/sshd [?25h[?25lgithub.com/u-root/u-root/cmds/elvish github.com/u-rooot/u-root/xcmds/sshd [?25h[?25l - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/u-root/u-root/xcmds/sshdremove BmcElog \32,84-91 Top[?25h[?25l1,51-58[?25h[?25l()0,56-63[?25h[?25l()29,5 [?25h[?25l8,0-1[?25h[?25l7,15-22[?25h[?25l6,17-24[?25h[?25l5,35-42[?25h[?25l4,37-44[?25h[?25l3,84-91[?25h[?25l2,51-58[?25h[?25l3,84-91[?25h[?25l6-93[?25h[?25l7-94[?25h[?25l96-103[?25h[?25l7-104[?25h[?25l100-107[?25h[?25l1-108[?25h[?25l7-114[?25h[?25l13-120[?25h[?25l4-121[?25h[?25l7-124[?25h[?25l8-125[?25h[?25l9-126[?25h[?25l20-127[?25h[?25l4-131[?25h[?25l5-132[?25h[?25l6-133[?25h[?25l7-134[?25h[?25l31-138[?25h[?25l2-139[?25h[?25l6-143[?25h[?25l7-144[?25h[?25l42-149[?25h[?25l8-155[?25h[?25l9-156[?25h[?25l52-159[?25h[?25l3-160[?25h[?25l4-161[?25h[?25l5-162[?25h[?25l9-166[?25h[?25l4,37-44 [?25h[?25l5,35-42[?25h[?25l6,17-24[?25h[?25l7,15-22[?25h[?25l8,0-1 [?25h[?25l9,5 [?25h[?25l()30,56-63[?25h[?25l()1,51-58[?25h[?25l2,123-130[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 338L, 10004C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek bigke bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/u-root/u-root/xcmds/sshd -2019/01/03 14:11:54 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 14:11:54 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 14:12:02 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3402926 Jan 3 14:12 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - CC arch/x86/boot/version.o - Building modules, stage 2. - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5705 kB -CRC bb0b0620 -Kernel: arch/x86/boot/bzImage is ready (#80) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5857328 Jan 3 14:13 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [29@D': ./DXECLEANER /tmp/remove100[1@X[1@E^C[?2004l[?2004h^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/remove100 fv linux/arch/x86/boot//bzImage splat /tmp/remove100b ig saverom -[?2004l2019/01/03 14:14:09 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fut -[?2004lbash: fut: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/remove100big fv c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l/[?2004h[?25hu[?25l[?25hj[?25l[?25hi[?25l[?25h[?25l[?25h[?25l[?25hi[?25l[?25hi[?25l[?25ht[?25l[?25h[?25l[?25h[?25l[?25hn[?25l[?25hi[?25l[?25ht[?25l[?25h [?25l22,39-46 Top[?25h[?25l22,45-52 Top[?25h[?25l23,101-108 Top[?25h[?25l0-107[?25h[?25l97-104 [?25h[?25l6-103[?25h[?25l87-94 [?25h[?25l6-93[?25h[?25l3-90[?25h[?25l2-89[?25h[?25l76-83[?25h[?25l2-79[?25h[?25l3-80[?25h[?25l4-81[?25h[?25l5-82[?25h[?25l6-83[?25h[?25lu-root/u-root/cmds/init github.com/u-root/u-root/xcmdds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds//sshd ]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l1 change; before #1 0 seconds agolinuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd23,76-83 Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l4,37-44[?25h[?25l5,35-42[?25h[?25l6,17-24[?25h[?25l7,15-22[?25h[?25l8,0-1 [?25h[?25l9,5 [?25h[?25l()30,56-63[?25h[?25l()1,51-58[?25h[?25l2,76-83[?25h[?25l2-79[?25h[?25l1-78[?25h[?25l2-79[?25h[?25l6-83[?25h[?25l87-94[?25h[?25l6-93[?25h[?25l5-92[?25h[?25lgithub.com/linuxboot/dut/uinit github.com/u-root/u-rooot/xcmds/sshd32,115-122 Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 338L, 10035C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bim -[?2004lmake: *** No rule to make target 'bi'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-ro -ot/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make big -[?2004lmake: *** No rule to make target 'big'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 14:25:51 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 14:25:51 Filename is /tmp/initramfs.linux_amd64.cpio -make b -2019/01/03 14:26:00 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670889 Jan 3 14:26 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC 8bed2d2c -Kernel: arch/x86/boot/bzImage is ready (#81) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 14:26 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ /tcp /tmp/remove100 remove.rom100.rom -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove100.rom fv linux/arch/axxx86/boot/bzImage splat remove100.bit.romg.rom saverom -[?2004l2019/01/03 14:26:58 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER remove100big.rom -[?2004l+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 14:28:25 Listening on 192.168.0.1:8080 at 2019-01-03 14:28:25.458756522 -0800 PST m=+0.002028354 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uniinit  (reverse-i-search)`': s': futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom h': ssh -p 2222 192.168.0.2 ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh -p 2222 192.168.0.2 -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:BWCnSU327bX/VcCXDpzVZzCBt2iiVtasOrR6tw0L4+E. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -Enter passphrase for key '/usr/local/google/home/rminnich/.ssh/id_rsa': -rminnich@192.168.0.2: Permission denied (publickey). -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ tr5tt667cx./uinit ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/con -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/con" [New File]▽ [>c]10;?]11;?~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 0,0-1All]2;con (~/.ssh) - VIM]1;con[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/config -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/config" 131L, 2387C▽ [>c]10;?]11;?IdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/github - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster autoControlPersist 10m - -Host sarahcHostName 100.96.221.132Port 221,1Top]2;config (~/.ssh) - VIM]1;config[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lUser piIdentityFile ~/.ssh/console_rsa - -Host johncHostName 100.96.221.133Port 22User piIdentityFile ~/.ssh/console_rsa - -Host maxcHostName 100.96.221.134Port 22User piIdentityFile ~/.ssh/console_rsa - -Host reesecHostName 100.96.221.135Port 22User piIdentityFile ~/.ssh/console_rsa - -Host sarahHostName 100.96.221.140Port 22User rootIdentityFile ~/.ssh/dropbear_rsa - -Host johnHostName 100.96.221.141Port 22User rootIdentityFile ~/.ssh/dropbear_rsa - -Host maxHostName 100.96.221.142Port 22User rootIdentityFile ~/.ssh/dropbear_rsa - -Host reeseHostName 100.96.221.143Port 22User rootIdentityFile ~/.ssh/dropbear_rsa - -host chriskoHostName 35.237.181.185Port 22User chriskoIdentitiesOnly yes131,2-9Bot[?25h[?25l0[?25h[?25l29[?25h[?25l8[?25h[?25l7,9 [?25h[?25l6,0-1[?25h[?25l5,2-9[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1,9 [?25h[?25l0,0-1[?25h[?25l19,2-9[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5,8 [?25h[?25l4,0-1[?25h[?25l3,2-9[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l09,9 [?25h[?25lIdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/github - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynet52,2-9Top[?25h[?25l1[?25h[?25l0,9 [?25h[?25l49,0-1[?25h[?25l8,2-9[?25h[?25l7[?25h[?25l6[?25h[?25l5,6 [?25h[?25l4,0-1[?25h[?25l3,2-9[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l39,8 [?25h[?25l8,0-1[?25h[?25l7,2-9[?25h[?25l6[?25h[?25l5[?25h[?25l4,7 [?25h[?25l3,0-1[?25h[?25l2,2-9[?25h[?25l1[?25h[?25l0[?25h[?25l29,7 [?25h[?25l8,0-1[?25h[?25l7,2-9[?25h[?25l6[?25h[?25l5,9 [?25h[?25l6,2-9[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,7 [?25h[?25l8,0-1[?25h[?25l7,2-9[?25h[?25l6[?25h[?25l5,9 [?25h[?25l6,2-9[?25h[?25l7[?25h[?25l-- INSERT --28,1Top28,1Top]2;config + (~/.ssh) - VIM]1;config[?25h[?25l29,1Top[?25h[?25lH2[?25h[?25lO3[?25h[?25ls4[?25h[?25lt5[?25h[?25l6[?25h[?25li7[?25h[?25lt8[?25h[?25la9[?25h[?25lm10[?25h[?25li1[?25h[?25l0[?25h[?25l9 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25lo3[?25h[?25ls4[?25h[?25lt5[?25h[?25l6[?25h[?25li7[?25h[?25lt8[?25h[?25la9[?25h[?25lm10[?25h[?25li1[?25h[?25l30,1Top[?25h[?25l2-9[?25h[?25lH3-10[?25h[?25lo4-11[?25h[?25ls5-12[?25h[?25lt6-13[?25h[?25ln7-14[?25h[?25l6-13[?25h[?25lN7-14[?25h[?25la8-15[?25h[?25lm9-16[?25h[?25le10-17[?25h[?25l1-18[?25h[?25l12-19[?25h[?25l93-20[?25h[?25l24-21[?25h[?25l.5-22[?25h[?25l16-23[?25h[?25l67-24[?25h[?25l88-25[?25h[?25l.9-26[?25h[?25l020-27[?25h[?25l.1-28[?25h[?25l22-29[?25h[?25l31,1Top[?25h[?25l2-9[?25h[?25lP3-10[?25h[?25lo4-11[?25h[?25lr5-12[?25h[?25lt6-13[?25h[?25l7-14[?25h[?25l28-15[?25h[?25l29-16[?25h[?25l210-17[?25h[?25l21-18[?25h[?25l32,1Top[?25h[?25l2-9[?25h[?25lI3-10[?25h[?25ld4-11[?25h[?25le5-12[?25h[?25ln6-13[?25h[?25lt7-14[?25h[?25li8-15[?25h[?25ly9-16[?25h[?25l8-15[?25h[?25lt9-16[?25h[?25ly10-17[?25h[?25lF1-18[?25h[?25li2-19[?25h[?25ll3-20[?25h[?25le4-21[?25h[?25l5-22[?25h[?25l%d/.ssh/github29-36[?25h[?25l32,28-35 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/config" 136L, 2461C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/configgit -git github git.pub -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/git -git github git.pub -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/github  (reverse-i-search)`': v': vi ~/.ssh/config[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/config -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/config" 136L, 2461C▽ [>c]10;?]11;?IdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/github - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host itamiHostName 192.168.0.2Port 2222IdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster auto1,1Top]2;config (~/.ssh) - VIM]1;config[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1,0-1[?25h[?25l2,1 [?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l20,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3[?25h -[?2004l[?1l>[?1049l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l -[1]+ Stopped vi ~/.ssh/config -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lvi ~/.ssh/config -[?2004h]2;config (~/.ssh) - VIM]1;config[?1049h[?1h=[?2004h[?12h[?12l[?25lIdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/github - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host itamiHostName 192.168.0.2Port 2222IdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster auto23,1-8Top[?25h[?25l28-35[?25h[?25l]2;config + (~/.ssh) - VIM]1;config7-34[?25h[?25l6-33[?25h[?25l5-32[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/config" 136L, 2458C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/config/gi.t.git.pub .id_rsa.pub -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 15:17:40 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 15:17:40 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 15:17:50 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670896 Jan 3 15:17 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek ke b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - MKPIGGY arch/x86/boot/compressed/piggy.S - CC arch/x86/boot/compressed/misc.o - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC da2ed494 -Kernel: arch/x86/boot/bzImage is ready (#82) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 15:18 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ histvi DXECLEANER [1@c[1@p[1@ BURN && vi BURN -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"BURN" 17L, 368C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -m tester -echo "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;BURN (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;BURN[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l7,1[?25h[?25l6[?25h[?25l5[?25h[?25l-- INSERT --16,1Top16,1All]2;BURN + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;BURN[?25h[?25le2[?25h[?25lx3[?25h[?25li4[?25h[?25lt5[?25h[?25l6[?25h[?25l07[?25h[?25l16,6All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"BURN" 18L, 375C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ chmod +X Bx BURN -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ historhistr (reverse-i-search)`': [30@s': cp ~/.ssh/git.pub id_rsa.pub p': futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom [1@l [1@a ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom - saverom ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ splat remove100big.rom saverom - ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 338L, 10035C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l-- INSERT --29,1Top29,1Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lb2[?25h[?25lu3[?25h[?25lr4[?25h[?25ln5[?25h[?25l:6[?25h[?25l7[?25h[?25lb8[?25h[?25li9[?25h[?25lg10[?25h[?25li1[?25h[?25l2[?25h[?25lb3[?25h[?25l30,1Top[?25h[?25lfutk remove100.rom fv linux/arch/x86/boot/bzImage s[?25h[?25lplat remove100big.rom saverom31,1Top[?25h[?25l31,0-1Top[?25h[?25l0,1 [?25h[?25l-- INSERT --30,1Top[?25h[?25l futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom2-9[?25h[?25l30,1-8Top[?25h[?25l-- INSERT --31,1Top31,1Top[?25h[?25l2-9[?25h[?25l.3-10[?25h[?25l/4-11[?25h[?25lB5-12[?25h[?25lU6-13[?25h[?25lR7-14[?25h[?25lN8-15[?25h[?25l9-16[?25h[?25lr10-17[?25h[?25le1-18[?25h[?25lm2-19[?25h[?25lo3-20[?25h[?25le4-21[?25h[?25l3-20[?25h[?25lv4-21[?25h[?25le5-22[?25h[?25l16-23[?25h[?25l07-24[?25h[?25l08-25[?25h[?25lb9-26[?25h[?25li20-27[?25h[?25lg1-28[?25h[?25l.2-29[?25h[?25lr3-30[?25h[?25lo4-31[?25h[?25lm5-32[?25h[?25l31,24-31 Top[?25h[?25l0[?25h[?25l29,12 [?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10156C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 15:19:45 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 15:19:45 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 15:19:55 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670896 Jan 3 15:19 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 7fd312b9 -Kernel: arch/x86/boot/bzImage is ready (#83) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 3 15:20 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 15:20:19 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [30@s': cp ~/.ssh/git.pub id_rsa.pub [1@s[1@hvi ~/.ssh/config ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/configssh itimaami -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:miENHPv981aePKtKWpHMzoL8RloswFMqgignFIMxOdg. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -RSA host key for [192.168.0.2]:2222 has changed and you have requested strict checking. -Host key verification failed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/conknown_hosts -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/known_hosts" 6L, 2387C▽ [>c]10;?]11;?github.com,192.30.253.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal722J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.253.112 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.4 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.255.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -[192.168.0.2]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtAFfDPPq9QKJjbj+JG3eXowoL4tziF8z4eA+9Jb8JMO4irStc0qq+FBTSfAGCRaY0woqUN4cV9hVsF8HyzQ9Y+K++uijdjwfANIaF6WFa/w6YxQSpWYoKKOJawZ2bt0qn3Pv2CMTDuR/Ws3Sv+OuEbeFMDI+XypOcIAoQ11WkZAjT33Au9nEyDBPtM7ffhCFKUkKisgBU7LeQDgYz14C/8LrTaM2Kdn10YgSjdUiTpwwL4XqQGMAJWxErkxG4Ne90a10kPvAJ3rhtPoHw53CWoFkHfTLhIn5cXxoq+eraFNVc7RwMnOJbKzVtV7nDNxAlUUVW/s8UA+QapJTJ3G4hFT -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;known_hosts (~/.ssh) - VIM]1;known_hosts[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h1[?25l[?25h9[?25l[?25h2[?25l[?25h [?25l1,12All[?25h[?25l2,1All[?25h[?25l4,1All[?25h[?25l6,2All[?25h[?25l~ ~ ~ ]2;known_hosts + (~/.ssh) - VIM]1;known_hosts5,1[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/known_hosts" 5L, 1987C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itami -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:miENHPv981aePKtKWpHMzoL8RloswFMqgignFIMxOdg. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -rminnich@192.168.0.2: Permission denied (publickey). -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 futk.remove.99 LIST remove100.rom RUN3 xxx -bin.reset DIT id_rsa.pub LOG removeBMCcrap.bin RUN4 yyy -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma Makefile removemorecrap.bin RUN4.4.rom -BURN DXECLEANER ipmisucks.bin NOTES removesetupcrap.bin tyan7102.bin -commentmorecrap.bin EATIT L remove100 removesomecrap.bin uinit -commentsetupcrap.bin fail.bin linux remove100big.rom rom211.rom x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 futk.remove.99 LIST remove100.rom RUN3 xxx -bin.reset DIT id_rsa.pub LOG removeBMCcrap.bin RUN4 yyy -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma Makefile removemorecrap.bin RUN4.4.rom -BURN DXECLEANER ipmisucks.bin NOTES removesetupcrap.bin tyan7102.bin -commentmorecrap.bin EATIT L remove100 removesomecrap.bin uinit -commentsetupcrap.bin fail.bin linux remove100big.rom rom211.rom x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ lsssh itamivi ~/.ssh/known_hosts ssh itami -[?2004lrminnich@192.168.0.2: Permission denied (publickey). -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/conconfig -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/config" 136L, 2458C▽ [>c]10;?]11;?IdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/git - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host itamiHostName 192.168.0.2Port 2222IdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster auto1,1Top]2;config (~/.ssh) - VIM]1;config[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1,0-1[?25h[?25l2,1 [?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l20,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3[?25h[?25l4,0-1[?25h[?25l5,1 [?25h[?25l6,1-8[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh-key`gen -h -[?2004lGenerating public/private rsa key pair. -Enter file in which to save the key (/usr/local/google/home/rminnich/.ssh/id_rsa): ^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh-keygen -h -[?2004lGenerating public/private rsa key pair. -Enter file in which to save the key (/usr/local/google/home/rminnich/.ssh/id_rsa): /usr/local/google/home/rminnich/.ssh/NERF -Enter passphrase (empty for no passphrase): -Enter same passphrase again: -Your identification has been saved in /usr/local/google/home/rminnich/.ssh/NERF. -Your public key has been saved in /usr/local/google/home/rminnich/.ssh/NERF.pub. -The key fingerprint is: -SHA256:Jv+91zAv8uspuLmRuL14K4yd49daVEx4fy5mcSXUBNk rminnich@xcpu.svl.corp.google.com -The key's randomart image is: -+---[RSA 2048]----+ -| o+*.| -| .o+ E| -| .oo.| -| .. +| -| . S . +.| -| + . o * .| -| +o.oo.o * | -| . *=+=+ o.o| -| .+=X*oB=o | -+----[SHA256]-----+ -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls ~/.ssh -[?2004lagent-stuff.xcpu.mtv.corp.google.com console_rsa google_compute_engine id_rsa_google-old-cert.pub localjkhh5.pub -agent.xcpu.mtv.corp.google.com console_rsa.pub google_compute_engine.pub id_rsa_google-old.pub NERF -authorized_keys devlabs_id_rsa google_compute_known_hosts id_rsa_google.pub NERF.pub -authorized_keys2 devlabs_id_rsa.pub id_rsa id_rsa.pub sk-passwords -backup-20170411-104708 dropbear_rsa id_rsa_corp-cert.pub jkhh34.pub skynet -chromium dropbear_rsa.pub id_rsa_corp-old-cert.pub jkhh5.pub skynet.pub -chromium.pub git id_rsa_corp-old.pub jkhh5root.pub -config github id_rsa_corp.pub john -config~ git.pub id_rsa_google-cert.pub known_hosts -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/NERF..ssh/NERF.pub ikeid_rsa.pub -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv id_rsa.pub key.bpupub -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10156C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hi[?25l[?25hd[?25l[?25h_[?25l[?25h)[?25l[?25hr[?25l[?25h[?25l[?25h[?25l[?25hr[?25l[?25hs[?25l[?25ha[?25l[?25h [?25l23,65-72 Top[?25h[?25l2,51-58[?25h[?25l()1,56-63[?25h[?25l()0,2 [?25h[?25l19,1-8[?25h[?25l()8,55-62[?25h[?25l()7,13 [?25h[?25l-- INSERT --17,14Top[?25h[?25l5]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lk6[?25h[?25le7[?25h[?25ly8[?25h[?25lp9[?25h[?25l8[?25h[?25l.9[?25h[?25lp20[?25h[?25lu1[?25h[?25lb2[?25h[?25l17,21Top[?25h[?25l1 change; before #1 4 seconds ago17,13Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l8,6-13[?25h[?25l9,1-8 [?25h[?25l20,2 [?25h[?25l1,6-13[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1 [?25h[?25l9,12 [?25h[?25l30,6-13[?25h[?25l1[?25h[?25l2,0-1 [?25h[?25l3,5 [?25h[?25l4,6-13[?25h[?25l5[?25h[?25l7-14[?25h[?25l9-16[?25h[?25l10-17[?25h[?25l3-20[?25h[?25l4-21[?25h[?25l20-27[?25h[?25l1-28[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l34-41[?25h[?25l5-42[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l44-51[?25h[?25l5-52[?25h[?25l51-58[?25h[?25l6,2-9 [?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)ooo7-24[?25h[?25l(GOPATH)ooo9-26[?25h[?25l7[?25h[?25l20-27[?25h[?25l6[?25h[?25l5[?25h[?25l1-28[?25h[?25l6[?25h[?25l2-29[?25h[?25l3-30[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l8-55[?25h[?25l9-56[?25h[?25l54-61[?25h[?25l5-62[?25h[?25l8-65[?25h[?25l9-66[?25h[?25l65-72[?25h[?25l71-78[?25h[?25l65-72[?25h[?25l-- INSERT --36,65-72 Top.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmmds/sshd ]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lk.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xccmds/sshd6-73[?25h[?25le.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xxcmds/sshd7-74[?25h[?25ly.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshd8-75[?25h[?25l36,67-74 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10153C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bitgi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 15:36:12 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 15:36:12 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 15:36:22 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670891 Jan 3 15:36 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 15:40:20 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 15:40:20 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 15:40:29 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670891 Jan 3 15:40 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC 9ad6993d -Kernel: arch/x86/boot/bzImage is ready (#84) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 15:40 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 15:40:54 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -pam_glogin: invalid password -Sorry, try again. -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': s': mv id_rsa.pub key.pubs': cp ~/.ssh/NERF.pub id_rsa.pub [1@h ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/NERF.pub id_rsa.pub svi ~/.ssh/config -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/config" 136L, 2458C▽ [>c]10;?]11;?IdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/git - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host itamiHostName 192.168.0.2Port 2222IdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster auto1,1Top]2;config (~/.ssh) - VIM]1;config[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1,0-1[?25h[?25l2,1 [?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l20,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3[?25h[?25l4,0-1[?25h[?25l5,1 [?25h[?25l6,1-8[?25h[?25l7[?25h[?25l/[?2004h[?25hi[?25l[?25ht[?25l[?25ha[?25l[?25hi[?25l[?25hm[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: itaim27,1-8Top[?25h[?25l8,0-1[?25h[?25l9,8 [?25h[?25l30,1-8[?25h[?25l1[?25h[?25l2[?25h[?25l3,0-1[?25h[?25l4,7 [?25h[?25l3,0-1[?25h[?25l2,1-8[?25h[?25l28-35[?25h[?25l3-30[?25h[?25l-- INSERT --32,23-30 Top]2;config + (~/.ssh) - VIM]1;config[?25h[?25lN4-31[?25h[?25lE5-32[?25h[?25lR6-33[?25h[?25lF7-34[?25h[?25l32,26-33 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/config" 136L, 2456C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itimami -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:72hVZDSWaSc8OfW1GCuKzhtm8WiG5wNc5ZzUREMp1Ps. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -RSA host key for [192.168.0.2]:2222 has changed and you have requested strict checking. -Host key verification failed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': v': vi ~/.ssh/config[1@i[1@ Makefile ~/.ssh/configknown_hosts  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/known_hosts" 6L, 2387C▽ [>c]10;?]11;?github.com,192.30.253.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal722J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.253.112 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.4 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.255.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -[192.168.0.2]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhHajcOo0P490ZEw41OU9LhUlei1XxLZ27VwdQc54AIrXiUW9mbLUdppi3NV1dMqvrDf9uLlTSWoPFk0LTFu0h5TRRWezAYlOZBA8eX81u/K51b9wf1oXiWrNKjIyNKnLmMhoc3OJy6nhbzvSzPNYeoaZmyL+vYTUjWMxe2pWsq1JPet4N2r15Dhf/UdCEVvCn7XxsYnUhSaJJNOdfQzwxkmhYa/PvzJxblwIKcGOqQggJI9ITIuk9dgLDDAoLcXrqI90USnYk9UVdEYREtN/iPPIUjfWiuA5Z9ZrEHIVsOZx5U3XFtzF6Jm1HgMMGhEiWaz/1ArTQi6paPXaVQ3ZTuh -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;known_hosts (~/.ssh) - VIM]1;known_hosts[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l[]RRWggJ6[?25h[?25l~ ~ ~ ]2;known_hosts + (~/.ssh) - VIM]1;known_hosts5[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/known_hosts" 5L, 1987C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itami -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:72hVZDSWaSc8OfW1GCuKzhtm8WiG5wNc5ZzUREMp1Ps. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -Connection to 192.168.0.2 closed by remote host. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami /bin/defaultsh -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:PlIZJEc0bFmmlx/2nFmcBiV4307zd2bu/hbewLOpkXI. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -RSA host key for [192.168.0.2]:2222 has changed and you have requested strict checking. -Host key verification failed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [23@v': vi ~/.ssh/known_hosts[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/known_hosts" 6L, 2387C▽ [>c]10;?]11;?github.com,192.30.253.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal722J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.253.112 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.4 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.255.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -[192.168.0.2]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDoVqHFMTJsBkz22Y9I6Ib3tsCgegmCPncmxEGy/SQJvUZik7BRRTl0mFjulctuBk9v3TwkFk6Qpn2K8xwcRTNIzkIIbfooZ4trmiO1Lyh9VHSXJCn9mTeAc57pf3+B4zSIZ8Z0U4hbvKcwQQrbvYVPCUusayYpgQZYKwORQWwTMbl8s3Ui+GFICd5Q4h1GzHqRAaQXA8iAlFpXXymdM4QCTgoNCizcnTG6mGuf547gZAACg4CJV5Ktf/p/AhEAsa4lk1gIROxgJqWMq9AMP9H2Appri/S7pC8qh8bCstMcFpw29Vw356SqJ0FAErQq6COouoIJriq4qxZGMTY0HK9o1n -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;known_hosts (~/.ssh) - VIM]1;known_hosts[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l[]IIbAAC6[?25h[?25l~ ~ ~ ]2;known_hosts + (~/.ssh) - VIM]1;known_hosts5[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/known_hosts" 5L, 1987C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itami /bin/defaultsh -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:PlIZJEc0bFmmlx/2nFmcBiV4307zd2bu/hbewLOpkXI. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -Connection to 192.168.0.2 closed by remote host. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami /bin/defaultsh -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:+IvLeDtqn90i4gosl41wXHnM6t6cyqjKgptEi1fIqlA. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -RSA host key for [192.168.0.2]:2222 has changed and you have requested strict checking. -Host key verification failed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [23@v': vi ~/.ssh/known_hosts[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/known_hosts" 6L, 2387C▽ [>c]10;?]11;?github.com,192.30.253.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal722J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.253.112 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.4 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.255.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -[192.168.0.2]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCywaqlgG8TYj2lIMU3Jz2tc5qCLRovWSCFMHIxj0icmQrzsynlyfOj5aXUFEjOWCqhmFni3zIGo/v43En72VQMoq//260FClarbTGov/g/OOowb25k+a3Ros+oOEOQhxI56JpHYz3LzMSR3wxNm9zt9DGcYIvDRx/hpS16K7EiJyXIzQWoAf/SBKR/U2ZDttk268iP1430LuceApbKHQfbsFn38C+EtO522sAse5AZLVVe+tYdedyLu9G6vJk+eoyy63ED/noRmrlDvseAvq81vyMJWgunbCXoqcSHDUIUs46HcLyf3gIjpC2ocfFn8KIqzfuI9WapxiXvirzvLzmL/1 -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;known_hosts (~/.ssh) - VIM]1;known_hosts[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l[]//2VVe6[?25h[?25l~ ~ ~ ]2;known_hosts + (~/.ssh) - VIM]1;known_hosts5[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/known_hosts" 5L, 1987C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itami -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:+IvLeDtqn90i4gosl41wXHnM6t6cyqjKgptEi1fIqlA. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -2019/01/04 07:15:29 You need to specify which command to invoke. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami -[?2004l2019/01/04 07:16:22 You need to specify which command to invoke. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami -[?2004l2019/01/04 07:16:49 You need to specify which command to invoke. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ makg bimake burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 16:32:28 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 16:32:28 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 16:32:38 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3669502 Jan 3 16:32 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - MKPIGGY arch/x86/boot/compressed/piggy.S - CC arch/x86/boot/compressed/misc.o - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC c5db778 -Kernel: arch/x86/boot/bzImage is ready (#85) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 16:33 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 16:33:05 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -pam_glogin: invalid password -Sorry, try again. -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ grep -ri background ~go/go/src/github.com/u-root/u-root/xcmds/ru -[?2004lgrep: /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/ru: No such file or directory -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ grep -ri background ~/go/src/github.com/u-root/u-root/xcmds/rush/ -[?2004l/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go: // for now, bg will just happen in background. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/rush.go: // for now, bg will just happen in background. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ grep -ri background ~/go/src/github.com/u-root/u-root/xcmds/rush/ ~/go/src/github.com/u-root/u-root/xcmds/rush/b ~/go/src/github.com/u-root/u-root/xcmds/rush/g ~/go/src/github.com/u-root/u-root/xcmds/rush/ -[?2004l/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: bg bool -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: //fmt.Printf("BG\n") -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: tokType = "BG" -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: return "BG", tokType -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: // LINK and BG are similar save that LINK requires another command. If we don't get one, well. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: case "BG": -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: c.bg = true -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go: if c.bg { -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go: // for now, bg will just happen in background. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go: if c.bg { -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: bg bool -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: //fmt.Printf("BG\n") -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: tokType = "BG" -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: return "BG", tokType -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: // LINK and BG are similar save that LINK requires another command. If we don't get one, well. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: case "BG": -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: c.bg = true -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/rush.go: if c.bg { -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/rush.go: // for now, bg will just happen in background. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/rush.go: if c.bg { -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/r rush/rush.go: -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/go/src/github.com/u-root/u-root/xcmds/rush/rush.go:" [New File]▽ [>c]10;?]11;?~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 0,0-1All]2;rush.go: (~/go/src/github.com/u-root/u-root/xcmds/rush) - VIM]1;rush.go:[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/r rush/rush.go: -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/go/src/github.com/u-root/u-root/xcmds/rush/rush.go" 243L, 5260C▽ [>c]10;?]11;?// Copyright 2012-2017 the u-root Authors. All rights reserved -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Rush is an interactive shell similar to sh. -// -// Description: -// Prompt is '% '. -package main - -import ("bufio""fmt""io""io/ioutil""os""os/exec""path""path/filepath""syscall" -) - -type builtin func(c *Command) error - -// TODO: probably have one builtin map and use it for both types? -var (urpath = "/go/bin:/ubin:/buildbin:/bbin:/bin:/usr/local/bin:"builtins = make(map[string]builtin)// the environment dir is INTENDED to be per-user and bound in// a private name space at /env.envDir = "/env" -) - -func addBuiltIn(name string, f builtin) error {if _, ok := builtins[name]; ok {return fmt.Errorf("%v already a builtin", name)}builtins[name] = freturn nil -} - -func wire(cmds []*Command) error {for i, c := range cmds {// IO defaults.var err errorif c.Stdin == nil {if c.Stdin, err = openRead(c, os.Stdin, 0); err != nil {return err}}if c.link != "|" {if c.Stdout, err = openWrite(c, os.Stdout, 1); err != nil {return err}}if c.Stderr, err = openWrite(c, os.Stderr, 2); err != nil {return err}// The validation is such that "|" is not set on the last one.// Also, there won't be redirects and "|" inappropriately.if c.link != "|" {continue}w, err := cmds[i+1].StdinPipe()if err != nil {return err}r, err := cmds[i].StdoutPipe()if err != nil {return err}// Oh, yuck.// There seems to be no way to do the classic// inherited pipes thing in Go. Hard to believe.go func() {io.Copy(w, r)w.Close()}()}return nil1,1Top]2;rush.go (~/go/src/github.com/u-root/u-root/xcmds/rush) - VIM]1;rush.go[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hb[?25l[?25hg[?25l[?25h [?25l} - -func runit(c *Command) error {defer func() {for fd, f := range c.files {f.Close()delete(c.files, fd)}}()if b, ok := builtins[c.cmd]; ok {if err := b(c); err != nil {return err}} else {c.Cmd.SysProcAttr = &syscall.SysProcAttr{}if c.bg {97,8-229%[?25h[?25l -c.Cmd.SysProcAttr.Setpgid = true98,3-2410%[?25h[?25l -} else {99,8-2211%[?25h[?25l -c.Cmd.SysProcAttr.Foreground = true100,3-24 11%[?25h[?25l -c.Cmd.SysProcAttr.Ctty = int(ttyf.Fd())101,3-24 12%[?25h[?25l -{}102,3-17 12%[?25h[?25l -{}if err := c.Start(); err != nil {103,8-22 13%[?25h[?25l -return fmt.Errorf("%v: Path %v", err, os.Getenv("PATH"))104,3-24 14%[?25h[?25l -{}105,3-17 14%[?25h[?25l -{}if err := c.Wait(); err != nil {106,8-22 15%[?25h[?25l -return fmt.Errorf("wait: %v", err)107,3-24 16%[?25h[?25l -{}108,3-17 16%[?25h[?25l -{{}}109,2-917%[?25h[?25l -{}return nil110,11-18 17%[?25h[?25l -{}111,118%[?25h[?25l -{}112,0-119%[?25h[?25l -func openRead(c *Command, r io.Reader, fd int) (io.Reader, error) {113,2219%[?25h[?25l -if c.fdmap[fd] != "" {114,15-22 20%[?25h[?25l -[fd]f, err := os.Open(c.fdmap[fd])115,8-22 20%[?25h[?25l -c.files[fd] = f116,8-22 21%[?25h[?25l -return f, err117,8-22 22%[?25h[?25l -{}118,2-922%[?25h[?25l -{}return r, nil119,14-21 23%[?25h[?25l -{}120,124%[?25h[?25l -{}121,0-124%[?25h[?25l -func openWrite(c *Command, w io.Writer, fd int) (io.Writer, error) {122,2225%[?25h[?25l -if c.fdmap[fd] != "" {123,15-22 25%[?25h[?25l -[fd]f, err := os.Create(c.fdmap[fd])124,8-22 26%[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigburn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 16:42:31 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 16:42:31 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 16:42:41 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670267 Jan 3 16:42 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - MKPIGGY arch/x86/boot/compressed/piggy.S - CC arch/x86/boot/compressed/misc.o - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC ff72a90d -Kernel: arch/x86/boot/bzImage is ready (#86) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 16:43 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 16:43:08 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -q -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ q -[?2004l^Cqemu-system-x86_64: terminating on signal 2 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 16:48:59 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 16:48:59 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 16:49:09 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670657 Jan 3 16:49 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC 4f28dc9e -Kernel: arch/x86/boot/bzImage is ready (#87) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 16:49 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 16:49:34 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': s': vi /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go s': ssh itami[1@h ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:Zqwje8TL/1ZqqZT1SE3IqBez67DYGYIycigD6f8lIzo. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -Password authentication is disabled to avoid man-in-the-middle attacks. -Keyboard-interactive authentication is disabled to avoid man-in-the-middle attacks. -Connection to 192.168.0.2 closed by remote host. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami /make burnmake burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 10:42:22 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 10:42:22 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 10:42:33 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3671578 Jan 4 10:42 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 2b3c6a -Kernel: arch/x86/boot/bzImage is ready (#88) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 10:42 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/04 10:42:58 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -^Z -[1]+ Stopped make burn -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bg -[?2004l[1]+ make burn & -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10153C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l/[?2004h[?25hb[?25l[?25hu[?25l[?25hr[?25l[?25hn[?25l[?25h [?25l29,1Top[?25h[?25l30,1-8[?25h[?25l1[?25h[?25l0[?25h[?25l81-88[?25h[?25l-- INSERT --30,82-89 Top[?25h[?25l3-90]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l<4-91[?25h[?25l5-92[?25h[?25l/6-93[?25h[?25ld7-94[?25h[?25le8-95[?25h[?25lv9-96[?25h[?25l/90-97[?25h[?25ln1-98[?25h[?25lu2-99[?25h[?25ll3-100[?25h[?25ll4-101[?25h[?25l30,93-100 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10165C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ + echo ./0 -+ sleep 5 - -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status . -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - BURN - RUN4 - RUN4.4.rom - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - key.pub - remove100 - remove100.rom - remove100big.rom - rom211.rom - uinit - xxx - yyy - -no changes added to commit (use "git add" and/or "git commit -a") -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ + echo ./1 -+ sleep 10 -gi tadd  -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bgit add BURN -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ + exit 0 -gtit  -[?2004l[1]+ Done make burn -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git add RUN4 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi .gitignorevi ../.gitignore -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"../.gitignore" 52L, 430C▽ [>c]10;?]11;?# Prerequisites -*.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;.gitignore (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l52,1[?25h[?25l-- INSERT --53,1All]2;.gitignore + (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25h[?25l4[?25h[?25l*2[?25h[?25l.3[?25h[?25lr4[?25h[?25lo5[?25h[?25lm6[?25h[?25l54,5All[?25h[?25l3,0-1[?25h[?25l-- INSERT --54,1Top54,1All[?25h[?25l@2[?25h[?25l#3[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l@2[?25h[?25l#3[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l#2[?25h[?25l3[?25h[?25ld4[?25h[?25lo5[?25h[?25ln6[?25h[?25l'7[?25h[?25lt8[?25h[?25l9[?25h[?25lw10[?25h[?25la1[?25h[?25ln2[?25h[?25lt3[?25h[?25l4[?25h[?25lt5[?25h[?25lh6[?25h[?25le7[?25h[?25ls8[?25h[?25le9[?25h[?25l20[?25h[?25le1[?25h[?25lv2[?25h[?25le3[?25h[?25lr4[?25h[?25l54,23All[?25h[?25l-- INSERT --55,1Top55,1All[?25h[?25lu2[?25h[?25li3[?25h[?25ln4[?25h[?25li5[?25h[?25lt6[?25h[?25l55,5All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"../.gitignore" 56L, 467C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD ..." to unstage) - - new file: BURN - new file: RUN4 - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: ../.gitignore - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - key.pub - remove100 - xxx - yyy - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ rm xxx yyy -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv removemoorecrap.bin mv remove100 remove.ro100.rom -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv remove100 -remove100big.rom remove100.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv remove100 -remove100big.rom remove100.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv remove100 -remove100big.rom remove100.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv remove100bifg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': v': mv remove100 remove100.romi': vi ../.gitignore[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ../.gitignore -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"../.gitignore" 56L, 467C▽ [>c]10;?]11;?# Prerequisites -*.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf - -# don't want these ever -uinit -*.rom -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;.gitignore (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l56,1[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD ..." to unstage) - - new file: BURN - new file: RUN4 - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: ../.gitignore - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - key.pub - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': v': vi ../.gitignore[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ../.gitignore -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"../.gitignore" 56L, 467C▽ [>c]10;?]11;?# Prerequisites -*.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf - -# don't want these ever -uinit -*.rom -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;.gitignore (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l56,1[?25h[?25l-- INSERT --57,1All]2;.gitignore + (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25h[?25l*2[?25h[?25l.3[?25h[?25ll4[?25h[?25la5[?25h[?25l4[?25h[?25lz5[?25h[?25la6[?25h[?25lm7[?25h[?25l8,1[?25h[?25l*2[?25h[?25l.3[?25h[?25lp4[?25h[?25lu5[?25h[?25lb6[?25h[?25l58,5All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"../.gitignore" 58L, 480C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD ..." to unstage) - - new file: BURN - new file: RUN4 - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: ../.gitignore - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': v': vi ../.gitignore[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ../.gitignore -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"../.gitignore" 58L, 480C▽ [>c]10;?]11;?# Prerequisites -*.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf - -# don't want these ever -uinit -*.rom -*.lzam -*.pub -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;.gitignore (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l58,1[?25h[?25l7[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l-- REPLACE --57,5All[?25h[?25lm6]2;.gitignore + (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25h[?25la7[?25h[?25l57,6All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"../.gitignore" 58L, 480C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD ..." to unstage) - - new file: BURN - new file: RUN4 - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: ../.gitignore - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - futk.remove.99/ - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git add ../.gitignore -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git commit -as -[?2004lhint: Waiting for your editor to close the file... [?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"/usr/local/src/projects/nobinaryblobs/mainboards/.git/COMMIT_EDITMSG" 22L, 478C▽ [>c]10;?]11;?Signed-off-by: Ronald G. Minnich - -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# -# On branch master -# Your branch is up to date with 'origin/master'. -# -# Changes to be committed: -#modified: ../.gitignore -#new file: BURN -#modified: DXECLEANER -#modified: Makefile -#modified: RUN3 -#new file: RUN4 -# -# Untracked files: -#98.splat -#futk.remove.99/ -# -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,0-1All]2;COMMIT_EDITMSG (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l1,1 [?25h[?25l-- INSERT --12,1Top12,1All]2;COMMIT_EDITMSG + (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25h[?25lr2[?25h[?25le3[?25h[?25l4[?25h[?25l12,3All[?25h[?25l1 line less; before #1 1 seconds ago -~ 11,1All]2;COMMIT_EDITMSG (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25h[?25l0[?25h[?25l9,1 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4,0-1[?25h[?25l3,1 [?25h[?25l2,0-1[?25h[?25l1[?25h[?25l-- INSERT --1,1All[?25h[?25lm2]2;COMMIT_EDITMSG + (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25h[?25lo3[?25h[?25li4[?25h[?25lr5[?25h[?25le6[?25h[?25l7[?25h[?25lm8[?25h[?25la9[?25h[?25lk10[?25h[?25l9 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25lr4[?25h[?25le5[?25h[?25l6[?25h[?25lm7[?25h[?25la8[?25h[?25lk9[?25h[?25le10[?25h[?25l1[?25h[?25ls2[?25h[?25lt3[?25h[?25la4[?25h[?25ln5[?25h[?25lz6[?25h[?25la7[?25h[?25ls8[?25h[?25l,9[?25h[?25l20[?25h[?25lr1[?25h[?25lu2[?25h[?25ln3[?25h[?25l4[?25h[?25lr5[?25h[?25le6[?25h[?25ls7[?25h[?25lu8[?25h[?25ll9[?25h[?25lt30[?25h[?25ls1[?25h[?25l1,30All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l".git/COMMIT_EDITMSG" 22L, 508C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l [master b49685a] more make stanzas, run results - 6 files changed, 29811 insertions(+), 4 deletions(-) - create mode 100755 tyan7102/BURN - create mode 100644 tyan7102/RUN4 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git push -[?2004lEnumerating objects: 15, done. -Counting objects: 6% (1/15) Counting objects: 13% (2/15) Counting objects: 20% (3/15) Counting objects: 26% (4/15) Counting objects: 33% (5/15) Counting objects: 40% (6/15) Counting objects: 46% (7/15) Counting objects: 53% (8/15) Counting objects: 60% (9/15) Counting objects: 66% (10/15) Counting objects: 73% (11/15) Counting objects: 80% (12/15) Counting objects: 86% (13/15) Counting objects: 93% (14/15) Counting objects: 100% (15/15) Counting objects: 100% (15/15), done. -Delta compression using up to 16 threads -Compressing objects: 11% (1/9) Compressing objects: 22% (2/9) Compressing objects: 33% (3/9) Compressing objects: 44% (4/9) Compressing objects: 55% (5/9) Compressing objects: 66% (6/9) Compressing objects: 77% (7/9) Compressing objects: 88% (8/9) Compressing objects: 100% (9/9) Compressing objects: 100% (9/9), done. -Writing objects: 11% (1/9) Writing objects: 22% (2/9) Writing objects: 33% (3/9) Writing objects: 44% (4/9) Writing objects: 66% (6/9) Writing objects: 77% (7/9) Writing objects: 88% (8/9) Writing objects: 100% (9/9) Writing objects: 100% (9/9), 252.59 KiB | 1014.00 KiB/s, done. -Total 9 (delta 5), reused 0 (delta 0) -remote: Resolving deltas: 0% (0/5)  remote: Resolving deltas: 20% (1/5)  remote: Resolving deltas: 40% (2/5)  remote: Resolving deltas: 80% (4/5)  remote: Resolving deltas: 100% (5/5)  remote: Resolving deltas: 100% (5/5), completed with 4 local objects. -To github.com:linuxboot/mainboards.git - 98955b7..b49685a master -> master -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 10:55:06 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 10:55:06 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 10:55:10 error building: failed to parse AST in file "/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/pkg/bb/cmd/main.go": /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/pkg/bb/cmd/main.go:34:50: expected ';', found '{' (and 2 more errors) -exit status 1 -Makefile:34: recipe for target 'bigi' failed -make: *** [bigi] Error 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 10:56:20 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 10:56:20 Filename is /tmp/initramfs.linux_amd64.cpio -jnh   2019/01/04 10:56:30 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3672268 Jan 4 10:56 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 6e664068 -Kernel: arch/x86/boot/bzImage is ready (#89) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 10:56 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 10:56:55 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bi -[?2004lmake: *** No rule to make target 'bi'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:02:21 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:02:21 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:02:31 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670975 Jan 4 11:02 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 5911bf6a -Kernel: arch/x86/boot/bzImage is ready (#90) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 11:02 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 11:02:57 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -^Z -[1]+ Stopped make burn -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bg -[?2004l[1]+ make burn & -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/ -xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make q -[?2004l/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -Linux version 4.13.0-rc7-onie+ (rminnich@xcpu.svl.corp.google.com) (gcc version 7.3.0 (Debian 7.3.0-5)) #90 SMP Fri Jan 4 11:02:40 PST 2019 -Command line: -KERNEL supported cpus: - Intel GenuineIntel - AMD AuthenticAMD -x86/fpu: x87 FPU will use FXSAVE -e820: BIOS-provided physical RAM map: -BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -BIOS-e820: [mem 0x0000000000100000-0x00000000bffdffff] usable -BIOS-e820: [mem 0x00000000bffe0000-0x00000000bfffffff] reserved -BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -console [earlyser0] enabled -NX (Execute Disable) protection: active -random: fast init done -SMBIOS 2.8 present. -DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014 -tsc: Unable to calibrate against PIT -tsc: No reference (HPET/PMTIMER) available -e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT -e820: last_pfn = 0xbffe0 max_arch_pfn = 0x400000000 -found SMP MP-table at [mem 0x000f6aa0-0x000f6aaf] mapped at [ffff8800000f6aa0] -ACPI: Early table checksum verification disabled -ACPI: RSDP 0x00000000000F68B0 000014 (v00 BOCHS ) -ACPI: RSDT 0x00000000BFFE157C 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) -ACPI: FACP 0x00000000BFFE1458 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) -ACPI: DSDT 0x00000000BFFE0040 001418 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) -ACPI: FACS 0x00000000BFFE0000 000040 -ACPI: APIC 0x00000000BFFE14CC 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) -ACPI: HPET 0x00000000BFFE1544 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001) -Zone ranges: - DMA [mem 0x0000000000001000-0x0000000000ffffff] - DMA32 [mem 0x0000000001000000-0x00000000ffffffff] - Normal [mem 0x0000000100000000-0x000000023fffffff] -Movable zone start for each node -Early memory node ranges - node 0: [mem 0x0000000000001000-0x000000000009efff] - node 0: [mem 0x0000000000100000-0x00000000bffdffff] - node 0: [mem 0x0000000100000000-0x000000023fffffff] -Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -ACPI: PM-Timer IO Port: 0x608 -ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -Using ACPI (MADT) for SMP configuration information -ACPI: HPET id: 0x8086a201 base: 0xfed00000 -smpboot: Allowing 1 CPUs, 0 hotplug CPUs -e820: [mem 0xc0000000-0xfffbffff] available for PCI devices -Booting paravirtualized kernel on bare hardware -clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns -setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1 -percpu: Embedded 35 pages/cpu @ffff88023fc00000 s105112 r8192 d30056 u2097152 -Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2064233 -Kernel command line: earlyprintk=ttyS0,115200,keep console=ttyS0,115200 -PID hash table entries: 4096 (order: 3, 32768 bytes) -Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -Memory: 8167040K/8388088K available (3517K kernel code, 445K rwdata, 1356K rodata, 4520K init, 248K bss, 221048K reserved, 0K cma-reserved) -SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 -Hierarchical RCU implementation. - RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1. -RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 -NR_IRQS: 33024, nr_irqs: 256, preallocated irqs: 16 -NO_HZ: Clearing 0 from nohz_full range for timekeeping -NO_HZ: Full dynticks CPUs: . - Note: kernel parameter 'rcu_nocbs=' contains nonexistent CPUs. - Offload RCU callbacks from CPUs: . -Linux version 4.13.0-rc7-onie+ (rminnich@xcpu.svl.corp.google.com) (gcc version 7.3.0 (Debian 7.3.0-5)) #90 SMP Fri Jan 4 11:02:40 PST 2019 -Command line: -KERNEL supported cpus: - Intel GenuineIntel - AMD AuthenticAMD -x86/fpu: x87 FPU will use FXSAVE -e820: BIOS-provided physical RAM map: -BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -BIOS-e820: [mem 0x0000000000100000-0x00000000bffdffff] usable -BIOS-e820: [mem 0x00000000bffe0000-0x00000000bfffffff] reserved -BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -console [earlyser0] enabled -NX (Execute Disable) protection: active -random: fast init done -SMBIOS 2.8 present. -DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014 -tsc: Unable to calibrate against PIT -tsc: No reference (HPET/PMTIMER) available -e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT -e820: last_pfn = 0xbffe0 max_arch_pfn = 0x400000000 -found SMP MP-table at [mem 0x000f6aa0-0x000f6aaf] mapped at [ffff8800000f6aa0] -ACPI: Early table checksum verification disabled -ACPI: RSDP 0x00000000000F68B0 000014 (v00 BOCHS ) -ACPI: RSDT 0x00000000BFFE157C 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) -ACPI: FACP 0x00000000BFFE1458 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) -ACPI: DSDT 0x00000000BFFE0040 001418 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) -ACPI: FACS 0x00000000BFFE0000 000040 -ACPI: APIC 0x00000000BFFE14CC 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) -ACPI: HPET 0x00000000BFFE1544 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001) -Zone ranges: - DMA [mem 0x0000000000001000-0x0000000000ffffff] - DMA32 [mem 0x0000000001000000-0x00000000ffffffff] - Normal [mem 0x0000000100000000-0x000000023fffffff] -Movable zone start for each node -Early memory node ranges - node 0: [mem 0x0000000000001000-0x000000000009efff] - node 0: [mem 0x0000000000100000-0x00000000bffdffff] - node 0: [mem 0x0000000100000000-0x000000023fffffff] -Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -ACPI: PM-Timer IO Port: 0x608 -ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -Using ACPI (MADT) for SMP configuration information -ACPI: HPET id: 0x8086a201 base: 0xfed00000 -smpboot: Allowing 1 CPUs, 0 hotplug CPUs -e820: [mem 0xc0000000-0xfffbffff] available for PCI devices -Booting paravirtualized kernel on bare hardware -clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns -setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1 -percpu: Embedded 35 pages/cpu @ffff88023fc00000 s105112 r8192 d30056 u2097152 -Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2064233 -Kernel command line: earlyprintk=ttyS0,115200,keep console=ttyS0,115200 -PID hash table entries: 4096 (order: 3, 32768 bytes) -Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -Memory: 8167040K/8388088K available (3517K kernel code, 445K rwdata, 1356K rodata, 4520K init, 248K bss, 221048K reserved, 0K cma-reserved) -SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 -Hierarchical RCU implementation. - RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1. -RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 -NR_IRQS: 33024, nr_irqs: 256, preallocated irqs: 16 -NO_HZ: Clearing 0 from nohz_full range for timekeeping -NO_HZ: Full dynticks CPUs: . - Note: kernel parameter 'rcu_nocbs=' contains nonexistent CPUs. - Offload RCU callbacks from CPUs: . -console [ttyS0] enabled -console [ttyS0] enabled -clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns -clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns -tsc: Fast TSC calibration using PIT -tsc: Fast TSC calibration using PIT -tsc: Detected 2893.110 MHz processor -tsc: Detected 2893.110 MHz processor -Calibrating delay loop (skipped), value calculated using timer frequency.. 5786.22 BogoMIPS (lpj=2893110) -Calibrating delay loop (skipped), value calculated using timer frequency.. 5786.22 BogoMIPS (lpj=2893110) -pid_max: default: 32768 minimum: 301 -pid_max: default: 32768 minimum: 301 -ACPI: Core revision 20170531 -ACPI: Core revision 20170531 -ACPI: 1 ACPI AML tables successfully acquired and loaded -ACPI: 1 ACPI AML tables successfully acquired and loaded -Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 -Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 -Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 -Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 -Freeing SMP alternatives memory: 16K -Freeing SMP alternatives memory: 16K -smpboot: Max logical packages: 1 -smpboot: Max logical packages: 1 -..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3) -smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3) -Performance Events: PMU not available due to virtualization, using software events only. -Performance Events: PMU not available due to virtualization, using software events only. -Hierarchical SRCU implementation. -Hierarchical SRCU implementation. -smp: Bringing up secondary CPUs ... -smp: Bringing up secondary CPUs ... -smp: Brought up 1 node, 1 CPU -smp: Brought up 1 node, 1 CPU -smpboot: Total of 1 processors activated (5786.22 BogoMIPS) -smpboot: Total of 1 processors activated (5786.22 BogoMIPS) -clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns -clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns -futex hash table entries: 256 (order: 2, 16384 bytes) -futex hash table entries: 256 (order: 2, 16384 bytes) -pinctrl core: initialized pinctrl subsystem -pinctrl core: initialized pinctrl subsystem -NET: Registered protocol family 16 -NET: Registered protocol family 16 -cpuidle: using governor ladder -cpuidle: using governor ladder -cpuidle: using governor menu -cpuidle: using governor menu -PCCT header not found. -PCCT header not found. -ACPI: bus type PCI registered -ACPI: bus type PCI registered -PCI: Using configuration type 1 for base access -PCI: Using configuration type 1 for base access -ACPI: Added _OSI(Module Device) -ACPI: Added _OSI(Module Device) -ACPI: Added _OSI(Processor Device) -ACPI: Added _OSI(Processor Device) -ACPI: Added _OSI(3.0 _SCP Extensions) -ACPI: Added _OSI(3.0 _SCP Extensions) -ACPI: Added _OSI(Processor Aggregator Device) -ACPI: Added _OSI(Processor Aggregator Device) -ACPI: Interpreter enabled -ACPI: Interpreter enabled -ACPI: (supports S0 S5) -ACPI: (supports S0 S5) -ACPI: Using IOAPIC for interrupt routing -ACPI: Using IOAPIC for interrupt routing -PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -acpi PNP0A03:00: _OSC: OS supports [Segments MSI] -acpi PNP0A03:00: _OSC: OS supports [Segments MSI] -acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM -acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM -PCI host bridge to bus 0000:00 -PCI host bridge to bus 0000:00 -pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] -pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] -pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] -pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] -pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] -pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] -pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] -pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] -pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window] -pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window] -pci_bus 0000:00: root bus resource [bus 00-ff] -pci_bus 0000:00: root bus resource [bus 00-ff] -pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] -pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] -pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] -pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] -pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] -pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] -pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] -pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] -pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI -pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI -pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB -pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB -ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -ACPI: Enabled 2 GPEs in block 00 to 0F -ACPI: Enabled 2 GPEs in block 00 to 0F -SCSI subsystem initialized -SCSI subsystem initialized -pps_core: LinuxPPS API ver. 1 registered -pps_core: LinuxPPS API ver. 1 registered -pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti -pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti -PTP clock support registered -PTP clock support registered -PCI: Using ACPI for IRQ routing -PCI: Using ACPI for IRQ routing -HPET: 3 timers in total, 0 timers will be used for per-cpu timer -HPET: 3 timers in total, 0 timers will be used for per-cpu timer -clocksource: Switched to clocksource hpet -clocksource: Switched to clocksource hpet -pnp: PnP ACPI init -pnp: PnP ACPI init -pnp: PnP ACPI: found 6 devices -pnp: PnP ACPI: found 6 devices -clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -NET: Registered protocol family 2 -NET: Registered protocol family 2 -TCP established hash table entries: 65536 (order: 7, 524288 bytes) -TCP established hash table entries: 65536 (order: 7, 524288 bytes) -TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -TCP: Hash tables configured (established 65536 bind 65536) -TCP: Hash tables configured (established 65536 bind 65536) -UDP hash table entries: 4096 (order: 5, 131072 bytes) -UDP hash table entries: 4096 (order: 5, 131072 bytes) -UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) -UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) -NET: Registered protocol family 1 -NET: Registered protocol family 1 -pci 0000:00:00.0: Limiting direct PCI/PCI transfers -pci 0000:00:00.0: Limiting direct PCI/PCI transfers -pci 0000:00:01.0: PIIX3: Enabling Passive Release -pci 0000:00:01.0: PIIX3: Enabling Passive Release -pci 0000:00:01.0: Activating ISA DMA hang workarounds -pci 0000:00:01.0: Activating ISA DMA hang workarounds -pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] -pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] -PCI-DMA: Using software bounce buffering for IO (SWIOTLB) -PCI-DMA: Using software bounce buffering for IO (SWIOTLB) -software IO TLB [mem 0xbbfe0000-0xbffe0000] (64MB) mapped at [ffff8800bbfe0000-ffff8800bffdffff] -software IO TLB [mem 0xbbfe0000-0xbffe0000] (64MB) mapped at [ffff8800bbfe0000-ffff8800bffdffff] -workingset: timestamp_bits=62 max_order=21 bucket_order=0 -workingset: timestamp_bits=62 max_order=21 bucket_order=0 -fuse init (API version 7.26) -fuse init (API version 7.26) -Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) -Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) -io scheduler noop registered -io scheduler noop registered -io scheduler deadline registered -io scheduler deadline registered -io scheduler cfq registered (default) -io scheduler cfq registered (default) -io scheduler mq-deadline registered -io scheduler mq-deadline registered -io scheduler kyber registered -io scheduler kyber registered -input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -ACPI: Power Button [PWRF] -ACPI: Power Button [PWRF] -Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A -00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A -Non-volatile memory driver v1.3 -Non-volatile memory driver v1.3 -tsc: Refined TSC clocksource calibration: 2893.002 MHz -tsc: Refined TSC clocksource calibration: 2893.002 MHz -clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b37060c47, max_idle_ns: 440795280605 ns -clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b37060c47, max_idle_ns: 440795280605 ns -clocksource: Switched to clocksource tsc -clocksource: Switched to clocksource tsc -+ echo ./0 -+ sleep 5 -loop: module loaded -loop: module loaded -e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -e1000: Copyright (c) 1999-2006 Intel Corporation. -e1000: Copyright (c) 1999-2006 Intel Corporation. -ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11 -ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11 -e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56 -e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56 -e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection -e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection -e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k -e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k -e1000e: Copyright(c) 1999 - 2015 Intel Corporation. -e1000e: Copyright(c) 1999 - 2015 Intel Corporation. -igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k -igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k -igb: Copyright (c) 2007-2014 Intel Corporation. -igb: Copyright (c) 2007-2014 Intel Corporation. -i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 -i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 -serio: i8042 KBD port at 0x60,0x64 irq 1 -serio: i8042 KBD port at 0x60,0x64 irq 1 -serio: i8042 AUX port at 0x60,0x64 irq 12 -serio: i8042 AUX port at 0x60,0x64 irq 12 -hidraw: raw HID events driver (C) Jiri Kosina -hidraw: raw HID events driver (C) Jiri Kosina -oprofile: using NMI interrupt. -oprofile: using NMI interrupt. -NET: Registered protocol family 10 -NET: Registered protocol family 10 -input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 -input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 -Segment Routing with IPv6 -Segment Routing with IPv6 -NET: Registered protocol family 17 -NET: Registered protocol family 17 -Key type dns_resolver registered -Key type dns_resolver registered -sched_clock: Marking stable (13064292248, 0)->(13928299953, -864007705) -sched_clock: Marking stable (13064292248, 0)->(13928299953, -864007705) -console [netcon0] enabled -console [netcon0] enabled -netconsole: network logging started -netconsole: network logging started -Freeing unused kernel memory: 4520K -Freeing unused kernel memory: 4520K -Write protecting the kernel read-only data: 6144k -Write protecting the kernel read-only data: 6144k -Freeing unused kernel memory: 568K -Freeing unused kernel memory: 568K -Freeing unused kernel memory: 692K -Freeing unused kernel memory: 692K -rodata_test: all tests were successful -rodata_test: all tests were successful -+ echo ./1 -+ sleep 10 -2019/01/04 19:03:55 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:03:56 Created dir "/buildbin" (mode 0777) -2019/01/04 19:03:56 Created dir "/ubin" (mode 0777) -2019/01/04 19:03:56 Created dir "/tmp" (mode 0777) -2019/01/04 19:03:56 Created dir "/env" (mode 0777) -2019/01/04 19:03:56 Created dir "/tcz" (mode 0777) -2019/01/04 19:03:56 Created dir "/lib" (mode 0777) -2019/01/04 19:03:56 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:03:56 Created dir "/var/log" (mode 0777) -2019/01/04 19:03:56 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:03:56 Created dir "/etc" (mode 0777) -2019/01/04 19:03:56 Created dir "/proc" (mode 0555) -2019/01/04 19:03:56 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:03:56 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:03:56 Created dir "/dev" (mode 0777) -2019/01/04 19:03:56 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:03:56 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:03:56 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:03:56 Error creating mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0: no such device -2019/01/04 19:03:56 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:03:56 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:03:56 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:03:56 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:03:56 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:03:56 Created dir "/sys" (mode 0555) -2019/01/04 19:03:56 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:03:56 Error creating mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/memory" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/freezer" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/devices" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/blkio" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/cpuset" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/pids" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/hugetlb" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/perf_event" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct": symlink /sys/fs/cgroup/cpu,cpuacct /sys/fs/cgroup/cpu: no such file or directory -2019/01/04 19:03:56 Error creating symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct": symlink /sys/fs/cgroup/cpu,cpuacct /sys/fs/cgroup/cpuacct: no such file or directory -2019/01/04 19:03:56 Error creating symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio": symlink /sys/fs/cgroup/net_cls,net_prio /sys/fs/cgroup/net_cls: no such file or directory -2019/01/04 19:03:56 Error creating symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio": symlink /sys/fs/cgroup/net_cls,net_prio /sys/fs/cgroup/net_prio: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0: no such file or directory -2019/01/04 19:03:56 Done Rootfs -2019/01/04 19:03:56 envs [HOME=/ TERM=linux LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin] -2019/01/04 19:03:56 Let's try to run /inito -2019/01/04 19:03:56 it's not there -2019/01/04 19:03:56 Let's try to run /bbin/uinit -2019/01/04 19:03:56 Run &{/bbin/uinit [/bbin/uinit] [HOME=/ TERM=linux LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin] 0xc00000c018 0xc00000c020 0xc00000c028 [] 0xc00006d360 false [] [] [] [] } -2019/01/04 19:03:56 here we are in uinit -2019/01/04 19:03:56 UINIT uid is 0 -IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready -IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready -e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX -e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX -IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready -IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready -1: lo: mtu 65536 state DOWN - link/loopback -2: dummy0: mtu 1500 state DOWN - link/ether ba:39:31:93:ef:85 -3: eth0: mtu 1500 state UP - link/ether 52:54:00:12:34:56 - inet 192.168.0.2 brd 192.168.0.255 scope global eth0 - valid_lft forever preferred_lft forever - inet6 fe80::5054:ff:fe12:3456 scope link - valid_lft forever preferred_lft forever -2019/01/04 19:03:57 Sleeping 16 seconds for stupid network to come up - - - -+ exit 0 -2019/01/04 19:04:13 up all done -2019/01/04 19:04:13 Start an sshd -2019/01/04 19:04:13 Now dial 192.168.0.1:8080 -2019/01/04 19:04:13 starting ssh server on port 2222 - - - -qemu-system-x86_64: terminating on signal 2 -[1]+ Done make burn - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:07:00 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:07:00 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:07:09 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670975 Jan 4 11:07 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o -^CMakefile:1000: recipe for target 'vmlinux' failed -make[1]: *** [vmlinux] Error 1 -Makefile:18: recipe for target 'buildbzimage' failed -make: *** [buildbzimage] Interrupt - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ testramfs -i initramfs.linux_amd64.cpio.lzma  -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10165C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hl[?25l[?25hz[?25l[?25ha[?25l[?25h[?25l[?25hm[?25l[?25ha[?25l[?25h [?25l25,2-9Top[?25h[?25l7-14[?25h[?25l8-15[?25h[?25l7-14[?25h[?25l-- INSERT --25,7-14Top[?25h[?25l--f initramfs.linux_amd64.cpio8-15]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lk-f initramfs.linux_amd64.cpio9-16[?25h[?25l -f initramfs.linux_amd64.cpio10-17[?25h[?25l25,9-16Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10168C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mtestramfs -i /tmp/initramfs.linux_amd64.cpio -[?2004l2019/01/04 11:07:45 operation not permitted -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo !! -[?2004lsudo testramfs -i /tmp/initramfs.linux_amd64.cpio -sudo: testramfs: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rmbin/bin/tesgo/bin/testramfs -i /t p/inmp/initramfs.linux_amd64.cpio -[?2004l2019/01/04 19:08:06 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:08:06 Created dir "/buildbin" (mode 0777) -2019/01/04 19:08:06 Created dir "/ubin" (mode 0777) -2019/01/04 19:08:06 Created dir "/tmp" (mode 0777) -2019/01/04 19:08:06 Created dir "/env" (mode 0777) -2019/01/04 19:08:06 Created dir "/tcz" (mode 0777) -2019/01/04 19:08:06 Created dir "/lib" (mode 0777) -2019/01/04 19:08:06 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:08:06 Created dir "/var/log" (mode 0777) -2019/01/04 19:08:06 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:08:06 Created dir "/etc" (mode 0777) -2019/01/04 19:08:06 Created dir "/proc" (mode 0555) -2019/01/04 19:08:06 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:08:06 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:08:06 Created dir "/dev" (mode 0777) -2019/01/04 19:08:06 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:08:06 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:08:06 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:08:06 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:08:06 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:08:06 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:08:06 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:08:06 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:08:06 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:08:06 Created dir "/sys" (mode 0555) -2019/01/04 19:08:06 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:08:06 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:08:06 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:08:06 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:08:06 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:08:06 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:08:06 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:08:06 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:08:06 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:08:06 Done Rootfs -2019/01/04 19:08:06 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/] -2019/01/04 19:08:06 Let's try to run /inito -2019/01/04 19:08:06 it's not there -2019/01/04 19:08:06 Let's try to run /bbin/uinit -2019/01/04 19:08:06 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/] 0xc0000a8000 0xc0000a8008 0xc0000a8010 [] 0xc0001585a0 false [] [] [] [] } -2019/01/04 19:08:06 here we are in uinit -2019/01/04 19:08:06 UINIT uid is 0 -ip: Link not found -2019/01/04 19:08:06 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:08:06 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:08:06 Sleeping 16 seconds for stupid network to come up - - -2019/01/04 19:08:22 up all done -2019/01/04 19:08:22 Start an sshd -2019/01/04 19:08:22 Now dial 192.168.0.1:8080 -2019/01/04 19:08:22 Dial went poorly -2019/01/04 19:08:22 We are now done ...................... -2019/01/04 19:08:22 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:08:22 Shell exited, exit status 2 -2019/01/04 19:08:22 Let's try to run /bin/uinit -2019/01/04 19:08:22 it's not there -2019/01/04 19:08:22 Let's try to run /buildbin/uinit -2019/01/04 19:08:22 it's not there -2019/01/04 19:08:22 Let's try to run /bin/defaultsh -2019/01/04 19:08:22 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:08:22 is now /bbin/elvish -2019/01/04 19:08:22 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/] 0xc0000a8000 0xc0000a8008 0xc0000a8010 [] 0xc000158640 false [] [] [] [] } -2019/01/04 19:08:22 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l ???> ???> [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:08:25 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:08:25 arg1 is -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -^C2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -Exception: defaultsh killed by signal interrupt -[tty], line 1: defaultsh -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# k root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# km root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# kma root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# kmak root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# m root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ma root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# mak root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make bi root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "make": executable file not found in $PATH -[tty], line 1: make bi -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:10:07 Shell exited, exit status 0 -2019/01/04 19:10:07 init: Waiting for orphaned children -2019/01/04 19:10:07 init: All commands exited -2019/01/04 19:10:07 init: Syncing filesystems -maek2019/01/04 19:10:08 init: Exiting... -2019/01/04 11:10:08 Unmounting /tmp/u-root413451611 -2019/01/04 11:10:08 Removing /tmp/u-root413451611 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bimake bi -[?2004lmake: *** No rule to make target 'bi'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:10:16 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:10:16 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:10:26 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3669978 Jan 4 11:10 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:10:35 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:10:35 Created dir "/buildbin" (mode 0777) -2019/01/04 19:10:35 Created dir "/ubin" (mode 0777) -2019/01/04 19:10:35 Created dir "/tmp" (mode 0777) -2019/01/04 19:10:35 Created dir "/env" (mode 0777) -2019/01/04 19:10:35 Created dir "/tcz" (mode 0777) -2019/01/04 19:10:35 Created dir "/lib" (mode 0777) -2019/01/04 19:10:35 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:10:35 Created dir "/var/log" (mode 0777) -2019/01/04 19:10:35 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:10:35 Created dir "/etc" (mode 0777) -2019/01/04 19:10:35 Created dir "/proc" (mode 0555) -2019/01/04 19:10:35 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:10:35 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:10:35 Created dir "/dev" (mode 0777) -2019/01/04 19:10:35 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:10:35 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:10:35 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:10:35 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:10:35 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:10:35 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:10:35 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:10:35 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:10:35 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:10:35 Created dir "/sys" (mode 0555) -2019/01/04 19:10:35 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:10:35 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:10:35 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:10:35 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:10:35 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:10:35 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:10:35 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:10:35 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:10:35 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:10:35 Done Rootfs -2019/01/04 19:10:35 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin] -2019/01/04 19:10:35 Let's try to run /inito -2019/01/04 19:10:35 it's not there -2019/01/04 19:10:35 Let's try to run /bbin/uinit -2019/01/04 19:10:35 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc00015c5a0 false [] [] [] [] } -2019/01/04 19:10:35 here we are in uinit -2019/01/04 19:10:35 UINIT uid is 0 -ip: Link not found -2019/01/04 19:10:35 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:10:35 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:10:35 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:10:51 up all done -2019/01/04 19:10:51 Start an sshd -2019/01/04 19:10:51 Now dial 192.168.0.1:8080 -2019/01/04 19:10:51 Dial went poorly -2019/01/04 19:10:51 We are now done ...................... -2019/01/04 19:10:51 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:10:51 Shell exited, exit status 2 -2019/01/04 19:10:51 Let's try to run /bin/uinit -2019/01/04 19:10:51 it's not there -2019/01/04 19:10:51 Let's try to run /buildbin/uinit -2019/01/04 19:10:51 it's not there -2019/01/04 19:10:51 Let's try to run /bin/defaultsh -2019/01/04 19:10:51 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:10:51 is now /bbin/elvish -2019/01/04 19:10:51 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc00015c640 false [] [] [] [] } -2019/01/04 19:10:51 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:11:25 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:11:25 arg1 is -2019/01/04 19:11:25 arg1 at end -2019/01/04 19:11:25 os.Args is [/bin/defaultsh]: you need to specify which command to invoke. -Exception: defaultsh exited with 1 -[tty], line 1: defaultsh -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# f root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# fg root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# fg root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l Exception: args error -[tty], line 1: fg -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:14:08 Shell exited, exit status 0 -2019/01/04 19:14:08 init: Waiting for orphaned children -2019/01/04 19:14:08 init: All commands exited -2019/01/04 19:14:08 init: Syncing filesystems -2019/01/04 19:14:08 init: Exiting... -2019/01/04 11:14:08 Unmounting /tmp/u-root475748022 -2019/01/04 11:14:08 Removing /tmp/u-root475748022 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10168C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h-[?25l[?25hf[?25l[?25h [?25l23,58-65 Top[?25h[?25l25,10-17 Top[?25h[?25l36,58-65 Top[?25h[?25l7,2-9 [?25h[?25l8[?25h[?25l7-14[?25h[?25l-- INSERT --38,7-14Top[?25h[?25l--f initramfs.linux_amd64.cpio8-15]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lk-f initramfs.linux_amd64.cpio9-16[?25h[?25l -f initramfs.linux_amd64.cpio10-17[?25h[?25l38,9-16Top[?25h[?25l7[?25h[?25l6[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10171C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bi -[?2004lmake: *** No rule to make target 'bi'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:14:50 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:14:50 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:15:00 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:15 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670150 Jan 4 11:15 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:15:10 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:15:10 Created dir "/buildbin" (mode 0777) -2019/01/04 19:15:10 Created dir "/ubin" (mode 0777) -2019/01/04 19:15:10 Created dir "/tmp" (mode 0777) -2019/01/04 19:15:10 Created dir "/env" (mode 0777) -2019/01/04 19:15:10 Created dir "/tcz" (mode 0777) -2019/01/04 19:15:10 Created dir "/lib" (mode 0777) -2019/01/04 19:15:10 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:15:10 Created dir "/var/log" (mode 0777) -2019/01/04 19:15:10 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:15:10 Created dir "/etc" (mode 0777) -2019/01/04 19:15:10 Created dir "/proc" (mode 0555) -2019/01/04 19:15:10 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:15:10 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:15:10 Created dir "/dev" (mode 0777) -2019/01/04 19:15:10 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:15:10 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:15:10 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:15:10 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:15:10 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:15:10 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:15:10 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:15:10 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:15:10 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:15:10 Created dir "/sys" (mode 0555) -2019/01/04 19:15:10 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:15:10 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:15:10 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:15:10 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:15:10 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:15:10 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:15:10 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:15:10 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:15:10 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:15:10 Done Rootfs -2019/01/04 19:15:10 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] -2019/01/04 19:15:10 Let's try to run /inito -2019/01/04 19:15:10 it's not there -2019/01/04 19:15:10 Let's try to run /bbin/uinit -2019/01/04 19:15:10 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001665a0 false [] [] [] [] } -2019/01/04 19:15:10 here we are in uinit -2019/01/04 19:15:10 UINIT uid is 0 -ip: Link not found -2019/01/04 19:15:10 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:15:10 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:15:10 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:15:26 up all done -2019/01/04 19:15:26 Start an sshd -2019/01/04 19:15:26 Now dial 192.168.0.1:8080 -2019/01/04 19:15:26 Dial went poorly -2019/01/04 19:15:26 We are now done ...................... -2019/01/04 19:15:26 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:15:26 Shell exited, exit status 2 -2019/01/04 19:15:26 Let's try to run /bin/uinit -2019/01/04 19:15:26 it's not there -2019/01/04 19:15:26 Let's try to run /buildbin/uinit -2019/01/04 19:15:26 it's not there -2019/01/04 19:15:26 Let's try to run /bin/defaultsh -2019/01/04 19:15:26 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:15:26 is now /bbin/elvish -2019/01/04 19:15:26 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc000166640 false [] [] [] [] } -2019/01/04 19:15:26 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:15:51 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:15:51 first readlink is is ../bbin/elvish -2019/01/04 19:15:51 arg1 at end -2019/01/04 19:15:51 os.Args is [/bin/defaultsh]: you need to specify which command to invoke. -Exception: defaultsh exited with 1 -[tty], line 1: defaultsh -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l  [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:16:54 Shell exited, exit status 0 -2019/01/04 19:16:54 init: Waiting for orphaned children -2019/01/04 19:16:54 init: All commands exited -2019/01/04 19:16:54 init: Syncing filesystems - - -2019/01/04 19:16:54 init: Exiting... -2019/01/04 11:16:54 Unmounting /tmp/u-root214292543 -2019/01/04 11:16:54 Removing /tmp/u-root214292543 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:16:57 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:16:57 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:17:07 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:17 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670903 Jan 4 11:17 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:17:21 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:17:21 Created dir "/buildbin" (mode 0777) -2019/01/04 19:17:21 Created dir "/ubin" (mode 0777) -2019/01/04 19:17:21 Created dir "/tmp" (mode 0777) -2019/01/04 19:17:21 Created dir "/env" (mode 0777) -2019/01/04 19:17:21 Created dir "/tcz" (mode 0777) -2019/01/04 19:17:21 Created dir "/lib" (mode 0777) -2019/01/04 19:17:21 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:17:21 Created dir "/var/log" (mode 0777) -2019/01/04 19:17:21 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:17:21 Created dir "/etc" (mode 0777) -2019/01/04 19:17:21 Created dir "/proc" (mode 0555) -2019/01/04 19:17:21 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:17:21 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:17:21 Created dir "/dev" (mode 0777) -2019/01/04 19:17:21 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:17:21 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:17:21 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:17:21 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:17:21 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:17:21 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:17:21 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:17:21 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:17:21 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:17:21 Created dir "/sys" (mode 0555) -2019/01/04 19:17:21 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:17:21 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:17:21 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:17:21 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:17:21 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:17:21 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:17:21 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:17:21 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:17:21 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:17:21 Done Rootfs -2019/01/04 19:17:21 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] -2019/01/04 19:17:21 Let's try to run /inito -2019/01/04 19:17:21 it's not there -2019/01/04 19:17:21 Let's try to run /bbin/uinit -2019/01/04 19:17:21 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001545a0 false [] [] [] [] } -2019/01/04 19:17:21 here we are in uinit -2019/01/04 19:17:21 UINIT uid is 0 -ip: Link not found -2019/01/04 19:17:21 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:17:21 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:17:21 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:17:37 up all done -2019/01/04 19:17:37 Start an sshd -2019/01/04 19:17:37 Now dial 192.168.0.1:8080 -2019/01/04 19:17:37 Dial went poorly -2019/01/04 19:17:37 We are now done ...................... -2019/01/04 19:17:37 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:17:37 Shell exited, exit status 2 -2019/01/04 19:17:37 Let's try to run /bin/uinit -2019/01/04 19:17:37 it's not there -2019/01/04 19:17:37 Let's try to run /buildbin/uinit -2019/01/04 19:17:37 it's not there -2019/01/04 19:17:37 Let's try to run /bin/defaultsh -2019/01/04 19:17:37 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:17:37 is now /bbin/elvish -2019/01/04 19:17:37 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc000154640 false [] [] [] [] } -2019/01/04 19:17:37 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:17:40 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:17:40 first readlink is is ../bbin/elvish, -2019/01/04 19:17:40 arg1 at end -2019/01/04 19:17:40 os.Args is [/bin/defaultsh]: you need to specify which command to invoke. -Exception: defaultsh exited with 1 -[tty], line 1: defaultsh -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# m root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ma root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# mak root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l  [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  [?25h[?25l  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:18:26 Shell exited, exit status 0 -2019/01/04 19:18:26 init: Waiting for orphaned children -2019/01/04 19:18:26 init: All commands exited -2019/01/04 19:18:26 init: Syncing filesystems -2019/01/04 19:18:27 init: Exiting... -2019/01/04 11:18:27 Unmounting /tmp/u-root739849131 -2019/01/04 11:18:27 Removing /tmp/u-root739849131 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigii -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:18:30 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:18:30 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:18:40 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:18 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670913 Jan 4 11:18 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:18:49 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:18:49 Created dir "/buildbin" (mode 0777) -2019/01/04 19:18:49 Created dir "/ubin" (mode 0777) -2019/01/04 19:18:49 Created dir "/tmp" (mode 0777) -2019/01/04 19:18:49 Created dir "/env" (mode 0777) -2019/01/04 19:18:49 Created dir "/tcz" (mode 0777) -2019/01/04 19:18:49 Created dir "/lib" (mode 0777) -2019/01/04 19:18:49 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:18:49 Created dir "/var/log" (mode 0777) -2019/01/04 19:18:49 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:18:49 Created dir "/etc" (mode 0777) -2019/01/04 19:18:49 Created dir "/proc" (mode 0555) -2019/01/04 19:18:49 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:18:49 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:18:49 Created dir "/dev" (mode 0777) -2019/01/04 19:18:49 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:18:49 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:18:49 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:18:49 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:18:49 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:18:49 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:18:49 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:18:49 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:18:49 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:18:49 Created dir "/sys" (mode 0555) -2019/01/04 19:18:49 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:18:49 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:18:49 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:18:49 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:18:49 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:18:49 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:18:49 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:18:49 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:18:49 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:18:49 Done Rootfs -2019/01/04 19:18:49 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] -2019/01/04 19:18:49 Let's try to run /inito -2019/01/04 19:18:49 it's not there -2019/01/04 19:18:49 Let's try to run /bbin/uinit -2019/01/04 19:18:49 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001565a0 false [] [] [] [] } -2019/01/04 19:18:49 here we are in uinit -2019/01/04 19:18:49 UINIT uid is 0 -ip: Link not found -2019/01/04 19:18:49 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:18:49 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:18:49 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:19:05 up all done -2019/01/04 19:19:05 Start an sshd -2019/01/04 19:19:05 Now dial 192.168.0.1:8080 -2019/01/04 19:19:05 Dial went poorly -2019/01/04 19:19:05 We are now done ...................... -2019/01/04 19:19:05 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:19:05 Shell exited, exit status 2 -2019/01/04 19:19:05 Let's try to run /bin/uinit -2019/01/04 19:19:05 it's not there -2019/01/04 19:19:05 Let's try to run /buildbin/uinit -2019/01/04 19:19:05 it's not there -2019/01/04 19:19:05 Let's try to run /bin/defaultsh -2019/01/04 19:19:05 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:19:05 is now /bbin/elvish -2019/01/04 19:19:05 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc000156640 false [] [] [] [] } -2019/01/04 19:19:05 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:19:08 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:19:08 first readlink is is ../bbin/elvish, -2019/01/04 19:19:08 arg1 is now ../bbin/elvish -2019/01/04 19:19:08 ..... readlink is is , readlink ../bbin/elvish: no such file or directory -2019/01/04 19:19:08 arg1 at end ../bbin/elvish -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln = root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln =- root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln = root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln - root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s / root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bn root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bn/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bn root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh / root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:19:27 os.Args is [/bin/sh], trying plan b -2019/01/04 19:19:27 first readlink is is /bin/defaultsh, -2019/01/04 19:19:27 arg1 is now /bin/defaultsh -2019/01/04 19:19:27 ..... readlink is is ../bbin/elvish, -2019/01/04 19:19:27 arg1 is now ../bbin/elvish -2019/01/04 19:19:27 ..... readlink is is , readlink ../bbin/elvish: no such file or directory -2019/01/04 19:19:27 arg1 at end ../bbin/elvish -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:19:37 Shell exited, exit status 0 -2019/01/04 19:19:37 init: Waiting for orphaned children -2019/01/04 19:19:37 init: All commands exited -2019/01/04 19:19:37 init: Syncing filesystems -2019/01/04 19:19:37 init: Exiting... -2019/01/04 11:19:37 Unmounting /tmp/u-root926368361 -2019/01/04 11:19:37 Removing /tmp/u-root926368361 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:19:40 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:19:40 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:19:50 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:19 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670913 Jan 4 11:19 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC fad3a1d1 -Kernel: arch/x86/boot/bzImage is ready (#92) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 4 11:20 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 11:20:14 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bighi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:21:48 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:21:48 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:21:58 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -^R -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:21 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3671533 Jan 4 11:21 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ test (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:22:07 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:22:07 Created dir "/buildbin" (mode 0777) -2019/01/04 19:22:07 Created dir "/ubin" (mode 0777) -2019/01/04 19:22:07 Created dir "/tmp" (mode 0777) -2019/01/04 19:22:07 Created dir "/env" (mode 0777) -2019/01/04 19:22:07 Created dir "/tcz" (mode 0777) -2019/01/04 19:22:07 Created dir "/lib" (mode 0777) -2019/01/04 19:22:07 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:22:07 Created dir "/var/log" (mode 0777) -2019/01/04 19:22:07 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:22:07 Created dir "/etc" (mode 0777) -2019/01/04 19:22:07 Created dir "/proc" (mode 0555) -2019/01/04 19:22:07 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:22:07 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:22:07 Created dir "/dev" (mode 0777) -2019/01/04 19:22:07 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:22:07 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:22:07 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:22:07 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:22:07 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:22:07 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:22:07 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:22:07 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:22:07 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:22:07 Created dir "/sys" (mode 0555) -2019/01/04 19:22:07 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:22:07 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:22:07 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:22:07 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:22:07 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:22:07 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:22:07 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:22:07 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:22:07 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:22:07 Done Rootfs -2019/01/04 19:22:07 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] -2019/01/04 19:22:07 Let's try to run /inito -2019/01/04 19:22:07 it's not there -2019/01/04 19:22:07 Let's try to run /bbin/uinit -2019/01/04 19:22:07 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc00014e5a0 false [] [] [] [] } -2019/01/04 19:22:07 here we are in uinit -2019/01/04 19:22:07 UINIT uid is 0 -ip: Link not found -2019/01/04 19:22:07 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:22:07 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:22:07 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:22:23 up all done -2019/01/04 19:22:23 Start an sshd -2019/01/04 19:22:23 Now dial 192.168.0.1:8080 -2019/01/04 19:22:23 Dial went poorly -2019/01/04 19:22:23 We are now done ...................... -2019/01/04 19:22:23 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:22:23 Shell exited, exit status 2 -2019/01/04 19:22:23 Let's try to run /bin/uinit -2019/01/04 19:22:23 it's not there -2019/01/04 19:22:23 Let's try to run /buildbin/uinit -2019/01/04 19:22:23 it's not there -2019/01/04 19:22:23 Let's try to run /bin/defaultsh -2019/01/04 19:22:23 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:22:23 is now /bbin/elvish -2019/01/04 19:22:23 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc00014e640 false [] [] [] [] } -2019/01/04 19:22:23 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln - root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s / root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh / root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:22:34 Shell exited, exit status 0 -2019/01/04 19:22:34 init: Waiting for orphaned children -2019/01/04 19:22:34 init: All commands exited -2019/01/04 19:22:34 init: Syncing filesystems -2019/01/04 19:22:34 init: Exiting... -2019/01/04 11:22:34 Unmounting /tmp/u-root479433618 -2019/01/04 11:22:34 Removing /tmp/u-root479433618 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make big -[?2004lmake: *** No rule to make target 'big'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pmake bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:27:29 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:27:29 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:27:39 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 11:27 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 11:27 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:27:51 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:27:51 Created dir "/buildbin" (mode 0777) -2019/01/04 19:27:51 Created dir "/ubin" (mode 0777) -2019/01/04 19:27:51 Created dir "/tmp" (mode 0777) -2019/01/04 19:27:51 Created dir "/env" (mode 0777) -2019/01/04 19:27:51 Created dir "/tcz" (mode 0777) -2019/01/04 19:27:51 Created dir "/lib" (mode 0777) -2019/01/04 19:27:51 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:27:51 Created dir "/var/log" (mode 0777) -2019/01/04 19:27:51 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:27:51 Created dir "/etc" (mode 0777) -2019/01/04 19:27:51 Created dir "/proc" (mode 0555) -2019/01/04 19:27:51 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:27:51 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:27:51 Created dir "/dev" (mode 0777) -2019/01/04 19:27:51 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:27:51 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:27:51 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:27:51 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:27:51 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:27:51 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:27:51 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:27:51 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:27:51 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:27:51 Created dir "/sys" (mode 0555) -2019/01/04 19:27:51 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:27:51 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:27:51 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:27:51 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:27:51 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:27:51 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:27:51 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:27:51 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:27:51 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:27:51 Done Rootfs -2019/01/04 19:27:51 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] -2019/01/04 19:27:51 Let's try to run /inito -2019/01/04 19:27:51 it's not there -2019/01/04 19:27:51 Let's try to run /bbin/uinit -2019/01/04 19:27:51 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc0001605a0 false [] [] [] [] } -2019/01/04 19:27:51 here we are in uinit -2019/01/04 19:27:51 UINIT uid is 0 -ip: Link not found -2019/01/04 19:27:51 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:27:51 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:27:51 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:28:07 up all done -2019/01/04 19:28:07 Start an sshd -2019/01/04 19:28:07 Now dial 192.168.0.1:8080 -2019/01/04 19:28:07 Dial went poorly -2019/01/04 19:28:07 We are now done ...................... -2019/01/04 19:28:07 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:28:07 Shell exited, exit status 2 -2019/01/04 19:28:07 Let's try to run /bin/uinit -2019/01/04 19:28:07 it's not there -2019/01/04 19:28:07 Let's try to run /buildbin/uinit -2019/01/04 19:28:07 it's not there -2019/01/04 19:28:07 Let's try to run /bin/defaultsh -2019/01/04 19:28:07 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:28:07 is now /bbin/elvish -2019/01/04 19:28:07 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc000160640 false [] [] [] [] } -2019/01/04 19:28:07 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:28:12 Shell exited, exit status 0 -2019/01/04 19:28:12 Let's try to run /bin/sh -2019/01/04 19:28:12 Run &{/bin/sh [/bin/sh] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc0001606e0 false [] [] [] [] } -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:28:19 Shell exited, exit status 0 -2019/01/04 19:28:19 init: Waiting for orphaned children -2019/01/04 19:28:19 init: All commands exited -2019/01/04 19:28:19 init: Syncing filesystems -2019/01/04 19:28:19 init: Exiting... -2019/01/04 11:28:19 Unmounting /tmp/u-root776400482 -2019/01/04 11:28:19 Removing /tmp/u-root776400482 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make q -[?2004l/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -Linux version 4.13.0-rc7-onie+ (rminnich@xcpu.svl.corp.google.com) (gcc version 7.3.0 (Debian 7.3.0-5)) #92 SMP Fri Jan 4 11:19:59 PST 2019 -Command line: -KERNEL supported cpus: - Intel GenuineIntel - AMD AuthenticAMD -x86/fpu: x87 FPU will use FXSAVE -e820: BIOS-provided physical RAM map: -BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -BIOS-e820: [mem 0x0000000000100000-0x00000000bffdffff] usable -BIOS-e820: [mem 0x00000000bffe0000-0x00000000bfffffff] reserved -BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -console [earlyser0] enabled -NX (Execute Disable) protection: active -random: fast init done -SMBIOS 2.8 present. -DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014 -tsc: Fast TSC calibration using PIT -e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT -e820: last_pfn = 0xbffe0 max_arch_pfn = 0x400000000 -found SMP MP-table at [mem 0x000f6aa0-0x000f6aaf] mapped at [ffff8800000f6aa0] -ACPI: Early table checksum verification disabled -ACPI: RSDP 0x00000000000F68B0 000014 (v00 BOCHS ) -ACPI: RSDT 0x00000000BFFE157C 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) -ACPI: FACP 0x00000000BFFE1458 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) -ACPI: DSDT 0x00000000BFFE0040 001418 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) -ACPI: FACS 0x00000000BFFE0000 000040 -ACPI: APIC 0x00000000BFFE14CC 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) -ACPI: HPET 0x00000000BFFE1544 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001) -Zone ranges: - DMA [mem 0x0000000000001000-0x0000000000ffffff] - DMA32 [mem 0x0000000001000000-0x00000000ffffffff] - Normal [mem 0x0000000100000000-0x000000023fffffff] -Movable zone start for each node -Early memory node ranges - node 0: [mem 0x0000000000001000-0x000000000009efff] - node 0: [mem 0x0000000000100000-0x00000000bffdffff] - node 0: [mem 0x0000000100000000-0x000000023fffffff] -Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -ACPI: PM-Timer IO Port: 0x608 -ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -Using ACPI (MADT) for SMP configuration information -ACPI: HPET id: 0x8086a201 base: 0xfed00000 -smpboot: Allowing 1 CPUs, 0 hotplug CPUs -e820: [mem 0xc0000000-0xfffbffff] available for PCI devices -Booting paravirtualized kernel on bare hardware -clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns -setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1 -percpu: Embedded 35 pages/cpu @ffff88023fc00000 s105112 r8192 d30056 u2097152 -Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2064233 -Kernel command line: earlyprintk=ttyS0,115200,keep console=ttyS0,115200 -PID hash table entries: 4096 (order: 3, 32768 bytes) -Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -Memory: 8167040K/8388088K available (3517K kernel code, 445K rwdata, 1356K rodata, 4520K init, 248K bss, 221048K reserved, 0K cma-reserved) -SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 -Hierarchical RCU implementation. - RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1. -RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 -NR_IRQS: 33024, nr_irqs: 256, preallocated irqs: 16 -NO_HZ: Clearing 0 from nohz_full range for timekeeping -NO_HZ: Full dynticks CPUs: . - Note: kernel parameter 'rcu_nocbs=' contains nonexistent CPUs. - Offload RCU callbacks from CPUs: . -Linux version 4.13.0-rc7-onie+ (rminnich@xcpu.svl.corp.google.com) (gcc version 7.3.0 (Debian 7.3.0-5)) #92 SMP Fri Jan 4 11:19:59 PST 2019 -Command line: -KERNEL supported cpus: - Intel GenuineIntel - AMD AuthenticAMD -x86/fpu: x87 FPU will use FXSAVE -e820: BIOS-provided physical RAM map: -BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -BIOS-e820: [mem 0x0000000000100000-0x00000000bffdffff] usable -BIOS-e820: [mem 0x00000000bffe0000-0x00000000bfffffff] reserved -BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -console [earlyser0] enabled -NX (Execute Disable) protection: active -random: fast init done -SMBIOS 2.8 present. -DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014 -tsc: Fast TSC calibration using PIT -e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT -e820: last_pfn = 0xbffe0 max_arch_pfn = 0x400000000 -found SMP MP-table at [mem 0x000f6aa0-0x000f6aaf] mapped at [ffff8800000f6aa0] -ACPI: Early table checksum verification disabled -ACPI: RSDP 0x00000000000F68B0 000014 (v00 BOCHS ) -ACPI: RSDT 0x00000000BFFE157C 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) -ACPI: FACP 0x00000000BFFE1458 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) -ACPI: DSDT 0x00000000BFFE0040 001418 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) -ACPI: FACS 0x00000000BFFE0000 000040 -ACPI: APIC 0x00000000BFFE14CC 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) -ACPI: HPET 0x00000000BFFE1544 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001) -Zone ranges: - DMA [mem 0x0000000000001000-0x0000000000ffffff] - DMA32 [mem 0x0000000001000000-0x00000000ffffffff] - Normal [mem 0x0000000100000000-0x000000023fffffff] -Movable zone start for each node -Early memory node ranges - node 0: [mem 0x0000000000001000-0x000000000009efff] - node 0: [mem 0x0000000000100000-0x00000000bffdffff] - node 0: [mem 0x0000000100000000-0x000000023fffffff] -Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -ACPI: PM-Timer IO Port: 0x608 -ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -Using ACPI (MADT) for SMP configuration information -ACPI: HPET id: 0x8086a201 base: 0xfed00000 -smpboot: Allowing 1 CPUs, 0 hotplug CPUs -e820: [mem 0xc0000000-0xfffbffff] available for PCI devices -Booting paravirtualized kernel on bare hardware -clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns -setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1 -percpu: Embedded 35 pages/cpu @ffff88023fc00000 s105112 r8192 d30056 u2097152 -Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2064233 -Kernel command line: earlyprintk=ttyS0,115200,keep console=ttyS0,115200 -PID hash table entries: 4096 (order: 3, 32768 bytes) -Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -Memory: 8167040K/8388088K available (3517K kernel code, 445K rwdata, 1356K rodata, 4520K init, 248K bss, 221048K reserved, 0K cma-reserved) -SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 -Hierarchical RCU implementation. - RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1. -RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 -NR_IRQS: 33024, nr_irqs: 256, preallocated irqs: 16 -NO_HZ: Clearing 0 from nohz_full range for timekeeping -NO_HZ: Full dynticks CPUs: . - Note: kernel parameter 'rcu_nocbs=' contains nonexistent CPUs. - Offload RCU callbacks from CPUs: . -console [ttyS0] enabled -console [ttyS0] enabled -clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns -clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns -tsc: Fast TSC calibration using PIT -tsc: Fast TSC calibration using PIT -tsc: Detected 2892.962 MHz processor -tsc: Detected 2892.962 MHz processor -Calibrating delay loop (skipped), value calculated using timer frequency.. 5785.92 BogoMIPS (lpj=2892962) -Calibrating delay loop (skipped), value calculated using timer frequency.. 5785.92 BogoMIPS (lpj=2892962) -pid_max: default: 32768 minimum: 301 -pid_max: default: 32768 minimum: 301 -ACPI: Core revision 20170531 -ACPI: Core revision 20170531 -ACPI: 1 ACPI AML tables successfully acquired and loaded -ACPI: 1 ACPI AML tables successfully acquired and loaded -Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 -Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 -Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 -Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 -Freeing SMP alternatives memory: 16K -Freeing SMP alternatives memory: 16K -smpboot: Max logical packages: 1 -smpboot: Max logical packages: 1 -..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3) -smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3) -Performance Events: PMU not available due to virtualization, using software events only. -Performance Events: PMU not available due to virtualization, using software events only. -Hierarchical SRCU implementation. -Hierarchical SRCU implementation. -smp: Bringing up secondary CPUs ... -smp: Bringing up secondary CPUs ... -smp: Brought up 1 node, 1 CPU -smp: Brought up 1 node, 1 CPU -smpboot: Total of 1 processors activated (5785.92 BogoMIPS) -smpboot: Total of 1 processors activated (5785.92 BogoMIPS) -clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns -clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns -futex hash table entries: 256 (order: 2, 16384 bytes) -futex hash table entries: 256 (order: 2, 16384 bytes) -pinctrl core: initialized pinctrl subsystem -pinctrl core: initialized pinctrl subsystem -NET: Registered protocol family 16 -NET: Registered protocol family 16 -cpuidle: using governor ladder -cpuidle: using governor ladder -cpuidle: using governor menu -cpuidle: using governor menu -PCCT header not found. -PCCT header not found. -ACPI: bus type PCI registered -ACPI: bus type PCI registered -PCI: Using configuration type 1 for base access -PCI: Using configuration type 1 for base access -ACPI: Added _OSI(Module Device) -ACPI: Added _OSI(Module Device) -ACPI: Added _OSI(Processor Device) -ACPI: Added _OSI(Processor Device) -ACPI: Added _OSI(3.0 _SCP Extensions) -ACPI: Added _OSI(3.0 _SCP Extensions) -ACPI: Added _OSI(Processor Aggregator Device) -ACPI: Added _OSI(Processor Aggregator Device) -ACPI: Interpreter enabled -ACPI: Interpreter enabled -ACPI: (supports S0 S5) -ACPI: (supports S0 S5) -ACPI: Using IOAPIC for interrupt routing -ACPI: Using IOAPIC for interrupt routing -PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -acpi PNP0A03:00: _OSC: OS supports [Segments MSI] -acpi PNP0A03:00: _OSC: OS supports [Segments MSI] -acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM -acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM -PCI host bridge to bus 0000:00 -PCI host bridge to bus 0000:00 -pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] -pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] -pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] -pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] -pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] -pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] -pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] -pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] -pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window] -pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window] -pci_bus 0000:00: root bus resource [bus 00-ff] -pci_bus 0000:00: root bus resource [bus 00-ff] -pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] -pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] -pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] -pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] -pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] -pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] -pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] -pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] -pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI -pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI -pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB -pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB -ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -ACPI: Enabled 2 GPEs in block 00 to 0F -ACPI: Enabled 2 GPEs in block 00 to 0F -SCSI subsystem initialized -SCSI subsystem initialized -pps_core: LinuxPPS API ver. 1 registered -pps_core: LinuxPPS API ver. 1 registered -pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti -pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti -PTP clock support registered -PTP clock support registered -PCI: Using ACPI for IRQ routing -PCI: Using ACPI for IRQ routing -HPET: 3 timers in total, 0 timers will be used for per-cpu timer -HPET: 3 timers in total, 0 timers will be used for per-cpu timer -clocksource: Switched to clocksource hpet -clocksource: Switched to clocksource hpet -pnp: PnP ACPI init -pnp: PnP ACPI init -pnp: PnP ACPI: found 6 devices -pnp: PnP ACPI: found 6 devices -clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -NET: Registered protocol family 2 -NET: Registered protocol family 2 -TCP established hash table entries: 65536 (order: 7, 524288 bytes) -TCP established hash table entries: 65536 (order: 7, 524288 bytes) -TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -TCP: Hash tables configured (established 65536 bind 65536) -TCP: Hash tables configured (established 65536 bind 65536) -UDP hash table entries: 4096 (order: 5, 131072 bytes) -UDP hash table entries: 4096 (order: 5, 131072 bytes) -UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) -UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) -NET: Registered protocol family 1 -NET: Registered protocol family 1 -pci 0000:00:00.0: Limiting direct PCI/PCI transfers -pci 0000:00:00.0: Limiting direct PCI/PCI transfers -pci 0000:00:01.0: PIIX3: Enabling Passive Release -pci 0000:00:01.0: PIIX3: Enabling Passive Release -pci 0000:00:01.0: Activating ISA DMA hang workarounds -pci 0000:00:01.0: Activating ISA DMA hang workarounds -pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] -pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] -qemu-system-x86_64: terminating on signal 2 - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:22:23 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:22:23 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:22:33 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:22 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:22 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC 5712b439 -Kernel: arch/x86/boot/bzImage is ready (#93) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 4 12:22 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:22:57 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10171C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l30,1-8[?25h[?25l1[?25h[?25l2,0-1[?25h[?25l1,1-8[?25h[?25l0[?25h[?25l29,1 [?25h[?25l8,0-1[?25h[?25l7,1-8[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l5[?25h[?25l7[?25h[?25l12[?25h[?25l30,2-9[?25h[?25l29,12 [?25h[?25l]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile1[?25h[?25l30,4-11[?25h[?25l1[?25h[?25l2,0-1 [?25h[?25l3,5 [?25h[?25l2,0-1[?25h[?25l1,4-11[?25h[?25l0[?25h[?25l29,11 [?25h[?25l8,0-1[?25h[?25l7,4-11[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1 [?25h[?25l9,11 [?25h[?25l30,4-11[?25h[?25l1[?25h[?25l2,0-1 [?25h[?25l1,4-11[?25h[?25l0[?25h[?25l29,11 [?25h[?25l8,0-1[?25h[?25l7,4-11[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0,2 [?25h[?25l19,1-8[?25h[?25l8,4-11[?25h[?25l7,11 [?25h[?25l6,0-1[?25h[?25l5,4-11[?25h[?25l4,3 [?25h[?25l3,0-1[?25h[?25l2,4-11[?25h[?25l1,4 [?25h[?25l2,4-11[?25h[?25l3,0-1 [?25h[?25l4,3 [?25h[?25l5,4-11[?25h[?25l6,0-1 [?25h[?25l7,11 [?25h[?25l8,4-11[?25h[?25l9,1-8 [?25h[?25l20,2 [?25h[?25l1,4-11[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1 [?25h[?25l9,11 [?25h[?25l-- INSERT --29,12Top[?25h[?25lb3[?25h[?25l29,12Top[?25h[?25l8,0-1[?25h[?25l7,5-12[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0,2 [?25h[?25l19,1-8[?25h[?25l8,5-12[?25h[?25l7,12 [?25h[?25l6,0-1[?25h[?25l5,5-12[?25h[?25l6,0-1 [?25h[?25l7,12 [?25h[?25l8,5-12[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10171C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:30:19 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:30:19 Filename is /tmp/initramfs.linux_amd64.cpio - - - - -2019/01/04 12:30:29 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:30 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:30 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC a3044d02 -Kernel: arch/x86/boot/bzImage is ready (#94) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:30 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:30:51 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 - - -^CMakefile:30: recipe for target 'burn' failed -make: *** [burn] Interrupt - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi buMakefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10171C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l30,1-8[?25h[?25l1[?25h[?25l2,0-1[?25h[?25l3,1 [?25h[?25l2,0-1[?25h[?25l1,1-8[?25h[?25l0[?25h[?25l93-100[?25h[?25l0-97 [?25h[?25l89-96[?25h[?25l6-93[?25h[?25l5-92[?25h[?25l3-90[?25h[?25l]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile2-89[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10160C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:31:22 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:31:22 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:31:32 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:31 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:31 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 89dbf92f -Kernel: arch/x86/boot/bzImage is ready (#95) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:31 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/04 12:31:55 no firmware volumes in BIOS Region -[]OK ^CMakefile:30: recipe for target 'burn' failed -make: *** [burn] Interrupt - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove100.rom -[?2004l[remove100.rom]OK fv -no firmware volumes in BIOS Region -[]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ file remove100* -[?2004lremove100big.rom: Intel serial flash for PCH ROM -remove100.rom: ASCII text -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more remove100.rom -[?2004lRUN4.4.rom fv drop -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag drop -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag drop -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag drop -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag drop -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag drop -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag drop -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag drop -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag drop -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag drop -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag drop -580DD900-385D-11D7-883A-00500473D4EB ix r r tag drop -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag drop -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag drop -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag drop -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag drop -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag drop -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag drop -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag drop -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag drop -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag drop -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag drop -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag drop -64A11188-5B86-4F59-A702-73365896E65E ix r r tag drop -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag drop -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag drop -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag drop -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag drop -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag drop -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag drop -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag drop -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag drop -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag drop -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag drop -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag drop -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag drop -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag drop -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag drop -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag drop -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag drop -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag drop -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag drop -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag drop -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag drop -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag drop -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag drop -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag drop -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag drop -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag drop -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag drop -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag drop -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag drop -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag drop -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag drop -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag drop -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag drop -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag drop -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag drop -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag drop -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag drop -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag drop -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag drop -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag drop -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag drop -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag drop -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag drop -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag drop -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag drop -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag drop -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag drop -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag drop -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag drop -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag drop -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag drop -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag drop ---More--(39%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 futk.remove.99 linux remove100.rom RUN3 -bin.reset DIT initramfs.linux_amd64.cpio LIST removeBMCcrap.bin RUN4 -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma LOG removemorecrap.bin RUN4.4.rom -BURN DXECLEANER ipmisucks.bin Makefile removesetupcrap.bin tyan7102.bin -commentmorecrap.bin EATIT key.pub NOTES removesomecrap.bin uinit -commentsetupcrap.bin fail.bin L remove100big.rom rom211.rom x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv removemo100.rom remove100 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ lr *rom -[?2004lbash: lr: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls *rom -[?2004lremove100big.rom rom211.rom RUN4.4.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove100big.rom fv -[?2004l2019/01/04 12:32:50 Found 213 things -[213]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp remove100big.rom remove100.rom -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:33:03 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:33:03 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:33:13 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:33 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:33 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC c387678f -Kernel: arch/x86/boot/bzImage is ready (#96) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:33 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/04 12:33:36 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -^CMakefile:30: recipe for target 'burn' failed -make: *** [burn] Interrupt - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10160C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l30,1-8[?25h[?25l1[?25h[?25l0[?25h[?25l82-89[?25h[?25l-- INSERT --30,83-90 Top[?25h[?25l4-91]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l<5-92[?25h[?25l6-93[?25h[?25l/7-94[?25h[?25ld8-95[?25h[?25le9-96[?25h[?25lv90-97[?25h[?25l/1-98[?25h[?25ln2-99[?25h[?25lu3-100[?25h[?25ll4-101[?25h[?25ll5-102[?25h[?25l30,94-101 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10172C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:33:58 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:33:58 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:34:08 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:34 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:34 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 709d0e8c -Kernel: arch/x86/boot/bzImage is ready (#97) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:34 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:34:34 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -Device status unknown. -Makefile:30: recipe for target 'burn' failed -make: *** [burn] Error 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[2090413.478133] print_req_error: 54 callbacks suppressed -[2090413.478135] print_req_error: I/O error, dev loop1, sector 9494400 -[2090413.478373] print_req_error: I/O error, dev loop1, sector 9494616 -[2090413.478442] print_req_error: I/O error, dev loop1, sector 5300224 -[2090413.478494] print_req_error: I/O error, dev loop1, sector 5300232 -[2090413.526050] print_req_error: I/O error, dev loop1, sector 85888 -[2090413.526200] print_req_error: I/O error, dev loop1, sector 86000 -[2090413.526349] print_req_error: I/O error, dev loop1, sector 20480 -[2090413.526499] print_req_error: I/O error, dev loop1, sector 20488 -[2090413.536462] print_req_error: I/O error, dev loop1, sector 5300096 -[2090413.536624] print_req_error: I/O error, dev loop1, sector 5300208 -[2090471.511176] print_req_error: 54 callbacks suppressed -[2090471.511178] print_req_error: I/O error, dev loop1, sector 9494400 -[2090471.511308] print_req_error: I/O error, dev loop1, sector 9494616 -[2090471.511372] print_req_error: I/O error, dev loop1, sector 5300224 -[2090471.511433] print_req_error: I/O error, dev loop1, sector 5300232 -[2090471.570180] print_req_error: I/O error, dev loop1, sector 85888 -[2090471.570306] print_req_error: I/O error, dev loop1, sector 86000 -[2090471.570375] print_req_error: I/O error, dev loop1, sector 20480 -[2090471.570519] print_req_error: I/O error, dev loop1, sector 20488 -[2090471.580574] print_req_error: I/O error, dev loop1, sector 5300096 -[2090471.580714] print_req_error: I/O error, dev loop1, sector 5300208 -[2112010.827903] print_req_error: 54 callbacks suppressed -[2112010.827905] print_req_error: I/O error, dev loop1, sector 9494400 -[2112010.828155] print_req_error: I/O error, dev loop1, sector 9494616 -[2112010.828225] print_req_error: I/O error, dev loop1, sector 5300224 -[2112010.828288] print_req_error: I/O error, dev loop1, sector 5300232 -[2112011.119197] print_req_error: I/O error, dev loop1, sector 85888 -[2112011.119368] print_req_error: I/O error, dev loop1, sector 86000 -[2112011.119454] print_req_error: I/O error, dev loop1, sector 20480 -[2112011.119604] print_req_error: I/O error, dev loop1, sector 20488 -[2112011.163172] print_req_error: I/O error, dev loop1, sector 5300096 -[2112011.163329] print_req_error: I/O error, dev loop1, sector 5300208 -[2112069.211288] print_req_error: 54 callbacks suppressed -[2112069.211289] print_req_error: I/O error, dev loop1, sector 9494400 -[2112069.211367] print_req_error: I/O error, dev loop1, sector 9494616 -[2112069.211400] print_req_error: I/O error, dev loop1, sector 5300224 -[2112069.211426] print_req_error: I/O error, dev loop1, sector 5300232 -[2112069.262885] print_req_error: I/O error, dev loop1, sector 85888 -[2112069.263034] print_req_error: I/O error, dev loop1, sector 86000 -[2112069.263180] print_req_error: I/O error, dev loop1, sector 20480 -[2112069.263330] print_req_error: I/O error, dev loop1, sector 20488 -[2112069.306796] print_req_error: I/O error, dev loop1, sector 5300096 -[2112069.306935] print_req_error: I/O error, dev loop1, sector 5300208 -[2133613.290508] print_req_error: 54 callbacks suppressed -[2133613.290510] print_req_error: I/O error, dev loop1, sector 9494400 -[2133613.290642] print_req_error: I/O error, dev loop1, sector 9494616 -[2133613.290676] print_req_error: I/O error, dev loop1, sector 5300224 -[2133613.290747] print_req_error: I/O error, dev loop1, sector 5300232 -[2133613.327409] print_req_error: I/O error, dev loop1, sector 85888 -[2133613.327483] print_req_error: I/O error, dev loop1, sector 86000 -[2133613.327532] print_req_error: I/O error, dev loop1, sector 20480 -[2133613.327600] print_req_error: I/O error, dev loop1, sector 20488 -[2133613.371295] print_req_error: I/O error, dev loop1, sector 5300096 -[2133613.371367] print_req_error: I/O error, dev loop1, sector 5300208 -[2133673.078115] print_req_error: 54 callbacks suppressed -[2133673.078117] print_req_error: I/O error, dev loop1, sector 9494400 -[2133673.078223] print_req_error: I/O error, dev loop1, sector 9494616 -[2133673.078280] print_req_error: I/O error, dev loop1, sector 5300224 -[2133673.078368] print_req_error: I/O error, dev loop1, sector 5300232 -[2133673.138524] print_req_error: I/O error, dev loop1, sector 85888 -[2133673.138692] print_req_error: I/O error, dev loop1, sector 86000 -[2133673.138846] print_req_error: I/O error, dev loop1, sector 20480 -[2133673.138999] print_req_error: I/O error, dev loop1, sector 20488 -[2133673.148904] print_req_error: I/O error, dev loop1, sector 5300096 -[2133673.149054] print_req_error: I/O error, dev loop1, sector 5300208 -[2155214.716211] print_req_error: 54 callbacks suppressed -[2155214.716213] print_req_error: I/O error, dev loop1, sector 9494400 -[2155214.716403] print_req_error: I/O error, dev loop1, sector 9494616 -[2155214.716465] print_req_error: I/O error, dev loop1, sector 5300224 -[2155214.716592] print_req_error: I/O error, dev loop1, sector 5300232 -[2155214.762579] print_req_error: I/O error, dev loop1, sector 85888 -[2155214.762732] print_req_error: I/O error, dev loop1, sector 86000 -[2155214.762819] print_req_error: I/O error, dev loop1, sector 20480 -[2155214.762915] print_req_error: I/O error, dev loop1, sector 20488 -[2155214.773346] print_req_error: I/O error, dev loop1, sector 5300096 -[2155214.773506] print_req_error: I/O error, dev loop1, sector 5300208 -[2155274.789779] print_req_error: 54 callbacks suppressed -[2155274.789781] print_req_error: I/O error, dev loop1, sector 9494400 -[2155274.789932] print_req_error: I/O error, dev loop1, sector 9494616 -[2155274.789990] print_req_error: I/O error, dev loop1, sector 5300224 -[2155274.790081] print_req_error: I/O error, dev loop1, sector 5300232 -[2155274.840226] print_req_error: I/O error, dev loop1, sector 85888 -[2155274.840384] print_req_error: I/O error, dev loop1, sector 86000 -[2155274.840474] print_req_error: I/O error, dev loop1, sector 20480 -[2155274.840615] print_req_error: I/O error, dev loop1, sector 20488 -[2155274.884080] print_req_error: I/O error, dev loop1, sector 5300096 -[2155274.884235] print_req_error: I/O error, dev loop1, sector 5300208 -[2176814.216805] print_req_error: 54 callbacks suppressed -[2176814.216807] print_req_error: I/O error, dev loop1, sector 9494400 -[2176814.217000] print_req_error: I/O error, dev loop1, sector 9494616 -[2176814.217072] print_req_error: I/O error, dev loop1, sector 5300224 -[2176814.217118] print_req_error: I/O error, dev loop1, sector 5300232 -[2176814.262798] print_req_error: I/O error, dev loop1, sector 85888 -[2176814.262945] print_req_error: I/O error, dev loop1, sector 86000 -[2176814.263087] print_req_error: I/O error, dev loop1, sector 20480 -[2176814.263175] print_req_error: I/O error, dev loop1, sector 20488 -[2176814.273059] print_req_error: I/O error, dev loop1, sector 5300096 -[2176814.273181] print_req_error: I/O error, dev loop1, sector 5300208 -[2176871.285406] print_req_error: 54 callbacks suppressed -[2176871.285407] print_req_error: I/O error, dev loop1, sector 9494400 -[2176871.285490] print_req_error: I/O error, dev loop1, sector 9494616 -[2176871.285523] print_req_error: I/O error, dev loop1, sector 5300224 -[2176871.285589] print_req_error: I/O error, dev loop1, sector 5300232 -[2176871.350776] print_req_error: I/O error, dev loop1, sector 85888 -[2176871.350863] print_req_error: I/O error, dev loop1, sector 86000 -[2176871.350930] print_req_error: I/O error, dev loop1, sector 20480 -[2176871.350997] print_req_error: I/O error, dev loop1, sector 20488 -[2176871.394953] print_req_error: I/O error, dev loop1, sector 5300096 -[2176871.395062] print_req_error: I/O error, dev loop1, sector 5300208 -[2198410.216834] print_req_error: 54 callbacks suppressed -[2198410.216836] print_req_error: I/O error, dev loop1, sector 9494400 -[2198410.217043] print_req_error: I/O error, dev loop1, sector 9494616 -[2198410.217109] print_req_error: I/O error, dev loop1, sector 5300224 -[2198410.217221] print_req_error: I/O error, dev loop1, sector 5300232 -[2198410.265514] print_req_error: I/O error, dev loop1, sector 85888 -[2198410.265662] print_req_error: I/O error, dev loop1, sector 86000 -[2198410.265803] print_req_error: I/O error, dev loop1, sector 20480 -[2198410.265962] print_req_error: I/O error, dev loop1, sector 20488 -[2198410.275651] print_req_error: I/O error, dev loop1, sector 5300096 -[2198410.275805] print_req_error: I/O error, dev loop1, sector 5300208 -[2198467.955698] print_req_error: 54 callbacks suppressed -[2198467.955700] print_req_error: I/O error, dev loop1, sector 9494400 -[2198467.955818] print_req_error: I/O error, dev loop1, sector 9494616 -[2198467.955881] print_req_error: I/O error, dev loop1, sector 5300224 -[2198467.956008] print_req_error: I/O error, dev loop1, sector 5300232 -[2198467.998405] print_req_error: I/O error, dev loop1, sector 85888 -[2198467.998555] print_req_error: I/O error, dev loop1, sector 86000 -[2198467.998681] print_req_error: I/O error, dev loop1, sector 20480 -[2198467.998824] print_req_error: I/O error, dev loop1, sector 20488 -[2198468.008641] print_req_error: I/O error, dev loop1, sector 5300096 -[2198468.008772] print_req_error: I/O error, dev loop1, sector 5300208 -[2220008.530143] print_req_error: 54 callbacks suppressed -[2220008.530145] print_req_error: I/O error, dev loop1, sector 9494400 -[2220008.530379] print_req_error: I/O error, dev loop1, sector 9494616 -[2220008.530446] print_req_error: I/O error, dev loop1, sector 5300224 -[2220008.530544] print_req_error: I/O error, dev loop1, sector 5300232 -[2220008.575136] print_req_error: I/O error, dev loop1, sector 85888 -[2220008.575302] print_req_error: I/O error, dev loop1, sector 86000 -[2220008.575382] print_req_error: I/O error, dev loop1, sector 20480 -[2220008.575538] print_req_error: I/O error, dev loop1, sector 20488 -[2220008.618923] print_req_error: I/O error, dev loop1, sector 5300096 -[2220008.619082] print_req_error: I/O error, dev loop1, sector 5300208 -[2220068.189294] print_req_error: 54 callbacks suppressed -[2220068.189296] print_req_error: I/O error, dev loop1, sector 9494400 -[2220068.189432] print_req_error: I/O error, dev loop1, sector 9494616 -[2220068.189501] print_req_error: I/O error, dev loop1, sector 5300224 -[2220068.189597] print_req_error: I/O error, dev loop1, sector 5300232 -[2220068.191523] print_req_error: I/O error, dev loop1, sector 85888 -[2220068.191614] print_req_error: I/O error, dev loop1, sector 86000 -[2220068.191712] print_req_error: I/O error, dev loop1, sector 20480 -[2220068.191792] print_req_error: I/O error, dev loop1, sector 20488 -[2220068.206998] print_req_error: I/O error, dev loop1, sector 5300096 -[2220068.207121] print_req_error: I/O error, dev loop1, sector 5300208 -[2241610.122690] print_req_error: 54 callbacks suppressed -[2241610.122691] print_req_error: I/O error, dev loop1, sector 9494400 -[2241610.122911] print_req_error: I/O error, dev loop1, sector 9494616 -[2241610.123023] print_req_error: I/O error, dev loop1, sector 5300224 -[2241610.123164] print_req_error: I/O error, dev loop1, sector 5300232 -[2241610.163946] print_req_error: I/O error, dev loop1, sector 85888 -[2241610.164097] print_req_error: I/O error, dev loop1, sector 86000 -[2241610.164252] print_req_error: I/O error, dev loop1, sector 20480 -[2241610.164399] print_req_error: I/O error, dev loop1, sector 20488 -[2241610.174298] print_req_error: I/O error, dev loop1, sector 5300096 -[2241610.174438] print_req_error: I/O error, dev loop1, sector 5300208 -[2241667.816991] print_req_error: 54 callbacks suppressed -[2241667.816992] print_req_error: I/O error, dev loop1, sector 9494400 -[2241667.817107] print_req_error: I/O error, dev loop1, sector 9494616 -[2241667.817168] print_req_error: I/O error, dev loop1, sector 5300224 -[2241667.817293] print_req_error: I/O error, dev loop1, sector 5300232 -[2241667.834639] print_req_error: I/O error, dev loop1, sector 85888 -[2241667.834714] print_req_error: I/O error, dev loop1, sector 86000 -[2241667.834777] print_req_error: I/O error, dev loop1, sector 20480 -[2241667.834829] print_req_error: I/O error, dev loop1, sector 20488 -[2241667.840304] print_req_error: I/O error, dev loop1, sector 5300096 -[2241667.840445] print_req_error: I/O error, dev loop1, sector 5300208 -[2263211.023405] print_req_error: 54 callbacks suppressed -[2263211.023407] print_req_error: I/O error, dev loop1, sector 9494400 -[2263211.023630] print_req_error: I/O error, dev loop1, sector 9494616 -[2263211.023690] print_req_error: I/O error, dev loop1, sector 5300224 -[2263211.023781] print_req_error: I/O error, dev loop1, sector 5300232 -[2263211.068997] print_req_error: I/O error, dev loop1, sector 85888 -[2263211.069093] print_req_error: I/O error, dev loop1, sector 86000 -[2263211.069188] print_req_error: I/O error, dev loop1, sector 20480 -[2263211.069250] print_req_error: I/O error, dev loop1, sector 20488 -[2263211.079662] print_req_error: I/O error, dev loop1, sector 5300096 -[2263211.079824] print_req_error: I/O error, dev loop1, sector 5300208 -[2263273.419934] print_req_error: 54 callbacks suppressed -[2263273.419935] print_req_error: I/O error, dev loop1, sector 9494400 -[2263273.420013] print_req_error: I/O error, dev loop1, sector 9494616 -[2263273.420046] print_req_error: I/O error, dev loop1, sector 5300224 -[2263273.420077] print_req_error: I/O error, dev loop1, sector 5300232 -[2263273.457260] print_req_error: I/O error, dev loop1, sector 85888 -[2263273.457415] print_req_error: I/O error, dev loop1, sector 86000 -[2263273.457554] print_req_error: I/O error, dev loop1, sector 20480 -[2263273.457698] print_req_error: I/O error, dev loop1, sector 20488 -[2263273.467665] print_req_error: I/O error, dev loop1, sector 5300096 -[2263273.467828] print_req_error: I/O error, dev loop1, sector 5300208 -[2284812.645887] print_req_error: 54 callbacks suppressed -[2284812.645888] print_req_error: I/O error, dev loop1, sector 9494400 -[2284812.646092] print_req_error: I/O error, dev loop1, sector 9494616 -[2284812.646153] print_req_error: I/O error, dev loop1, sector 5300224 -[2284812.646282] print_req_error: I/O error, dev loop1, sector 5300232 -[2284812.693987] print_req_error: I/O error, dev loop1, sector 85888 -[2284812.694131] print_req_error: I/O error, dev loop1, sector 86000 -[2284812.694209] print_req_error: I/O error, dev loop1, sector 20480 -[2284812.694338] print_req_error: I/O error, dev loop1, sector 20488 -[2284812.704225] print_req_error: I/O error, dev loop1, sector 5300096 -[2284812.704376] print_req_error: I/O error, dev loop1, sector 5300208 -[2284870.918182] print_req_error: 54 callbacks suppressed -[2284870.918184] print_req_error: I/O error, dev loop1, sector 9494400 -[2284870.918315] print_req_error: I/O error, dev loop1, sector 9494616 -[2284870.918374] print_req_error: I/O error, dev loop1, sector 5300224 -[2284870.918498] print_req_error: I/O error, dev loop1, sector 5300232 -[2284870.982223] print_req_error: I/O error, dev loop1, sector 85888 -[2284870.982373] print_req_error: I/O error, dev loop1, sector 86000 -[2284870.982481] print_req_error: I/O error, dev loop1, sector 20480 -[2284870.982550] print_req_error: I/O error, dev loop1, sector 20488 -[2284870.992423] print_req_error: I/O error, dev loop1, sector 5300096 -[2284870.992562] print_req_error: I/O error, dev loop1, sector 5300208 -[2306295.202505] print_req_error: 54 callbacks suppressed -[2306295.202507] print_req_error: I/O error, dev loop1, sector 9494400 -[2306295.202726] print_req_error: I/O error, dev loop1, sector 9494616 -[2306295.202797] print_req_error: I/O error, dev loop1, sector 5300224 -[2306295.202935] print_req_error: I/O error, dev loop1, sector 5300232 -[2306295.260881] print_req_error: I/O error, dev loop1, sector 85888 -[2306295.261025] print_req_error: I/O error, dev loop1, sector 86000 -[2306295.261164] print_req_error: I/O error, dev loop1, sector 20480 -[2306295.261304] print_req_error: I/O error, dev loop1, sector 20488 -[2306295.271478] print_req_error: I/O error, dev loop1, sector 5300096 -[2306295.271653] print_req_error: I/O error, dev loop1, sector 5300208 -[2306359.775188] print_req_error: 54 callbacks suppressed -[2306359.775190] print_req_error: I/O error, dev loop1, sector 9494400 -[2306359.775324] print_req_error: I/O error, dev loop1, sector 9494616 -[2306359.775383] print_req_error: I/O error, dev loop1, sector 5300224 -[2306359.775507] print_req_error: I/O error, dev loop1, sector 5300232 -[2306360.300717] print_req_error: I/O error, dev loop1, sector 85888 -[2306360.300895] print_req_error: I/O error, dev loop1, sector 86000 -[2306360.300979] print_req_error: I/O error, dev loop1, sector 20480 -[2306360.301048] print_req_error: I/O error, dev loop1, sector 20488 -[2306360.414414] print_req_error: I/O error, dev loop1, sector 5300096 -[2306360.414576] print_req_error: I/O error, dev loop1, sector 5300208 -[2326444.973753] print_req_error: 54 callbacks suppressed -[2326444.973755] print_req_error: I/O error, dev loop1, sector 9494400 -[2326444.973985] print_req_error: I/O error, dev loop1, sector 9494616 -[2326444.974048] print_req_error: I/O error, dev loop1, sector 5300224 -[2326444.974141] print_req_error: I/O error, dev loop1, sector 5300232 -[2326445.023289] print_req_error: I/O error, dev loop1, sector 85888 -[2326445.023437] print_req_error: I/O error, dev loop1, sector 86000 -[2326445.023582] print_req_error: I/O error, dev loop1, sector 20480 -[2326445.023730] print_req_error: I/O error, dev loop1, sector 20488 -[2326445.033675] print_req_error: I/O error, dev loop1, sector 5300096 -[2326445.033835] print_req_error: I/O error, dev loop1, sector 5300208 -[2326503.689529] print_req_error: 54 callbacks suppressed -[2326503.689531] print_req_error: I/O error, dev loop1, sector 9494400 -[2326503.689617] print_req_error: I/O error, dev loop1, sector 9494616 -[2326503.689650] print_req_error: I/O error, dev loop1, sector 5300224 -[2326503.689724] print_req_error: I/O error, dev loop1, sector 5300232 -[2326503.733569] print_req_error: I/O error, dev loop1, sector 85888 -[2326503.733658] print_req_error: I/O error, dev loop1, sector 86000 -[2326503.733691] print_req_error: I/O error, dev loop1, sector 20480 -[2326503.733762] print_req_error: I/O error, dev loop1, sector 20488 -[2326503.777500] print_req_error: I/O error, dev loop1, sector 5300096 -[2326503.777581] print_req_error: I/O error, dev loop1, sector 5300208 -[2348048.088540] print_req_error: 54 callbacks suppressed -[2348048.088542] print_req_error: I/O error, dev loop1, sector 9494400 -[2348048.088748] print_req_error: I/O error, dev loop1, sector 9494616 -[2348048.088817] print_req_error: I/O error, dev loop1, sector 5300224 -[2348048.088912] print_req_error: I/O error, dev loop1, sector 5300232 -[2348048.153775] print_req_error: I/O error, dev loop1, sector 85888 -[2348048.153921] print_req_error: I/O error, dev loop1, sector 86000 -[2348048.154021] print_req_error: I/O error, dev loop1, sector 20480 -[2348048.154118] print_req_error: I/O error, dev loop1, sector 20488 -[2348048.164476] print_req_error: I/O error, dev loop1, sector 5300096 -[2348048.164622] print_req_error: I/O error, dev loop1, sector 5300208 -[2348106.031526] print_req_error: 54 callbacks suppressed -[2348106.031527] print_req_error: I/O error, dev loop1, sector 9494400 -[2348106.031651] print_req_error: I/O error, dev loop1, sector 9494616 -[2348106.031711] print_req_error: I/O error, dev loop1, sector 5300224 -[2348106.031803] print_req_error: I/O error, dev loop1, sector 5300232 -[2348106.064496] print_req_error: I/O error, dev loop1, sector 85888 -[2348106.064658] print_req_error: I/O error, dev loop1, sector 86000 -[2348106.064743] print_req_error: I/O error, dev loop1, sector 20480 -[2348106.064889] print_req_error: I/O error, dev loop1, sector 20488 -[2348106.108566] print_req_error: I/O error, dev loop1, sector 5300096 -[2348106.108714] print_req_error: I/O error, dev loop1, sector 5300208 -[2369643.393219] print_req_error: 54 callbacks suppressed -[2369643.393220] print_req_error: I/O error, dev loop1, sector 9494400 -[2369643.393441] print_req_error: I/O error, dev loop1, sector 9494616 -[2369643.393502] print_req_error: I/O error, dev loop1, sector 5300224 -[2369643.393590] print_req_error: I/O error, dev loop1, sector 5300232 -[2369643.480266] print_req_error: I/O error, dev loop1, sector 85888 -[2369643.480414] print_req_error: I/O error, dev loop1, sector 86000 -[2369643.480497] print_req_error: I/O error, dev loop1, sector 20480 -[2369643.480613] print_req_error: I/O error, dev loop1, sector 20488 -[2369643.490617] print_req_error: I/O error, dev loop1, sector 5300096 -[2369643.490773] print_req_error: I/O error, dev loop1, sector 5300208 -[2369698.686380] print_req_error: 54 callbacks suppressed -[2369698.686382] print_req_error: I/O error, dev loop1, sector 9494400 -[2369698.686529] print_req_error: I/O error, dev loop1, sector 9494616 -[2369698.686605] print_req_error: I/O error, dev loop1, sector 5300224 -[2369698.686721] print_req_error: I/O error, dev loop1, sector 5300232 -[2369698.746285] print_req_error: I/O error, dev loop1, sector 85888 -[2369698.746425] print_req_error: I/O error, dev loop1, sector 86000 -[2369698.746569] print_req_error: I/O error, dev loop1, sector 20480 -[2369698.746704] print_req_error: I/O error, dev loop1, sector 20488 -[2369698.756858] print_req_error: I/O error, dev loop1, sector 5300096 -[2369698.757014] print_req_error: I/O error, dev loop1, sector 5300208 -[2391240.449429] print_req_error: 54 callbacks suppressed -[2391240.449430] print_req_error: I/O error, dev loop1, sector 9494400 -[2391240.449652] print_req_error: I/O error, dev loop1, sector 9494616 -[2391240.449715] print_req_error: I/O error, dev loop1, sector 5300224 -[2391240.449806] print_req_error: I/O error, dev loop1, sector 5300232 -[2391240.499313] print_req_error: I/O error, dev loop1, sector 85888 -[2391240.499451] print_req_error: I/O error, dev loop1, sector 86000 -[2391240.499588] print_req_error: I/O error, dev loop1, sector 20480 -[2391240.499734] print_req_error: I/O error, dev loop1, sector 20488 -[2391240.509801] print_req_error: I/O error, dev loop1, sector 5300096 -[2391240.509975] print_req_error: I/O error, dev loop1, sector 5300208 -[2391297.880530] print_req_error: 54 callbacks suppressed -[2391297.880531] print_req_error: I/O error, dev loop1, sector 9494400 -[2391297.880601] print_req_error: I/O error, dev loop1, sector 9494616 -[2391297.880716] print_req_error: I/O error, dev loop1, sector 5300224 -[2391297.880809] print_req_error: I/O error, dev loop1, sector 5300232 -[2391297.910109] print_req_error: I/O error, dev loop1, sector 85888 -[2391297.910248] print_req_error: I/O error, dev loop1, sector 86000 -[2391297.910331] print_req_error: I/O error, dev loop1, sector 20480 -[2391297.910459] print_req_error: I/O error, dev loop1, sector 20488 -[2391297.953994] print_req_error: I/O error, dev loop1, sector 5300096 -[2391297.954151] print_req_error: I/O error, dev loop1, sector 5300208 -[2412846.155681] print_req_error: 54 callbacks suppressed -[2412846.155682] print_req_error: I/O error, dev loop1, sector 9494400 -[2412846.155929] print_req_error: I/O error, dev loop1, sector 9494616 -[2412846.156000] print_req_error: I/O error, dev loop1, sector 5300224 -[2412846.156094] print_req_error: I/O error, dev loop1, sector 5300232 -[2412846.193598] print_req_error: I/O error, dev loop1, sector 85888 -[2412846.193724] print_req_error: I/O error, dev loop1, sector 86000 -[2412846.193843] print_req_error: I/O error, dev loop1, sector 20480 -[2412846.193942] print_req_error: I/O error, dev loop1, sector 20488 -[2412846.204186] print_req_error: I/O error, dev loop1, sector 5300096 -[2412846.204328] print_req_error: I/O error, dev loop1, sector 5300208 -[2412902.913051] print_req_error: 54 callbacks suppressed -[2412902.913053] print_req_error: I/O error, dev loop1, sector 9494400 -[2412902.913171] print_req_error: I/O error, dev loop1, sector 9494616 -[2412902.913280] print_req_error: I/O error, dev loop1, sector 5300224 -[2412902.913371] print_req_error: I/O error, dev loop1, sector 5300232 -[2412902.971032] print_req_error: I/O error, dev loop1, sector 85888 -[2412902.971175] print_req_error: I/O error, dev loop1, sector 86000 -[2412902.971321] print_req_error: I/O error, dev loop1, sector 20480 -[2412902.971416] print_req_error: I/O error, dev loop1, sector 20488 -[2412902.981552] print_req_error: I/O error, dev loop1, sector 5300096 -[2412902.981690] print_req_error: I/O error, dev loop1, sector 5300208 -[2434442.158586] print_req_error: 54 callbacks suppressed -[2434442.158588] print_req_error: I/O error, dev loop1, sector 9494400 -[2434442.158736] print_req_error: I/O error, dev loop1, sector 9494616 -[2434442.158813] print_req_error: I/O error, dev loop1, sector 5300224 -[2434442.158893] print_req_error: I/O error, dev loop1, sector 5300232 -[2434442.201518] print_req_error: I/O error, dev loop1, sector 85888 -[2434442.201659] print_req_error: I/O error, dev loop1, sector 86000 -[2434442.201728] print_req_error: I/O error, dev loop1, sector 20480 -[2434442.201859] print_req_error: I/O error, dev loop1, sector 20488 -[2434442.211940] print_req_error: I/O error, dev loop1, sector 5300096 -[2434442.212094] print_req_error: I/O error, dev loop1, sector 5300208 -[2434499.436873] print_req_error: 54 callbacks suppressed -[2434499.436875] print_req_error: I/O error, dev loop1, sector 9494400 -[2434499.436971] print_req_error: I/O error, dev loop1, sector 9494616 -[2434499.437029] print_req_error: I/O error, dev loop1, sector 5300224 -[2434499.437121] print_req_error: I/O error, dev loop1, sector 5300232 -[2434499.500723] print_req_error: I/O error, dev loop1, sector 85888 -[2434499.500862] print_req_error: I/O error, dev loop1, sector 86000 -[2434499.500997] print_req_error: I/O error, dev loop1, sector 20480 -[2434499.501130] print_req_error: I/O error, dev loop1, sector 20488 -[2434499.511433] print_req_error: I/O error, dev loop1, sector 5300096 -[2434499.511572] print_req_error: I/O error, dev loop1, sector 5300208 -[2456103.668662] print_req_error: 54 callbacks suppressed -[2456103.668664] print_req_error: I/O error, dev loop1, sector 9494400 -[2456103.668903] print_req_error: I/O error, dev loop1, sector 9494616 -[2456103.668969] print_req_error: I/O error, dev loop1, sector 5300224 -[2456103.669069] print_req_error: I/O error, dev loop1, sector 5300232 -[2456103.749691] print_req_error: I/O error, dev loop1, sector 85888 -[2456103.749847] print_req_error: I/O error, dev loop1, sector 86000 -[2456103.749925] print_req_error: I/O error, dev loop1, sector 20480 -[2456103.750063] print_req_error: I/O error, dev loop1, sector 20488 -[2456103.759881] print_req_error: I/O error, dev loop1, sector 5300096 -[2456103.760037] print_req_error: I/O error, dev loop1, sector 5300208 -[2456163.819983] print_req_error: 54 callbacks suppressed -[2456163.819984] print_req_error: I/O error, dev loop1, sector 9494400 -[2456163.820134] print_req_error: I/O error, dev loop1, sector 9494616 -[2456163.820198] print_req_error: I/O error, dev loop1, sector 5300224 -[2456163.820294] print_req_error: I/O error, dev loop1, sector 5300232 -[2456163.871015] print_req_error: I/O error, dev loop1, sector 85888 -[2456163.871166] print_req_error: I/O error, dev loop1, sector 86000 -[2456163.871280] print_req_error: I/O error, dev loop1, sector 20480 -[2456163.871393] print_req_error: I/O error, dev loop1, sector 20488 -[2456163.881601] print_req_error: I/O error, dev loop1, sector 5300096 -[2456163.881747] print_req_error: I/O error, dev loop1, sector 5300208 -[2477643.216650] print_req_error: 54 callbacks suppressed -[2477643.216652] print_req_error: I/O error, dev loop1, sector 9494400 -[2477643.216879] print_req_error: I/O error, dev loop1, sector 9494616 -[2477643.216944] print_req_error: I/O error, dev loop1, sector 5300224 -[2477643.217031] print_req_error: I/O error, dev loop1, sector 5300232 -[2477643.259151] print_req_error: I/O error, dev loop1, sector 85888 -[2477643.259303] print_req_error: I/O error, dev loop1, sector 86000 -[2477643.259453] print_req_error: I/O error, dev loop1, sector 20480 -[2477643.259603] print_req_error: I/O error, dev loop1, sector 20488 -[2477643.269553] print_req_error: I/O error, dev loop1, sector 5300096 -[2477643.269705] print_req_error: I/O error, dev loop1, sector 5300208 -[2477700.948247] print_req_error: 54 callbacks suppressed -[2477700.948249] print_req_error: I/O error, dev loop1, sector 9494400 -[2477700.948357] print_req_error: I/O error, dev loop1, sector 9494616 -[2477700.948415] print_req_error: I/O error, dev loop1, sector 5300224 -[2477700.948506] print_req_error: I/O error, dev loop1, sector 5300232 -[2477700.952272] print_req_error: I/O error, dev loop1, sector 85888 -[2477700.952413] print_req_error: I/O error, dev loop1, sector 86000 -[2477700.952509] print_req_error: I/O error, dev loop1, sector 20480 -[2477700.952573] print_req_error: I/O error, dev loop1, sector 20488 -[2477700.957689] print_req_error: I/O error, dev loop1, sector 5300096 -[2477700.957838] print_req_error: I/O error, dev loop1, sector 5300208 -[2499261.932980] print_req_error: 54 callbacks suppressed -[2499261.932982] print_req_error: I/O error, dev loop1, sector 9494400 -[2499261.933183] print_req_error: I/O error, dev loop1, sector 9494616 -[2499261.933245] print_req_error: I/O error, dev loop1, sector 5300224 -[2499261.933387] print_req_error: I/O error, dev loop1, sector 5300232 -[2499261.977326] print_req_error: I/O error, dev loop1, sector 85888 -[2499261.977491] print_req_error: I/O error, dev loop1, sector 86000 -[2499261.977580] print_req_error: I/O error, dev loop1, sector 20480 -[2499261.977735] print_req_error: I/O error, dev loop1, sector 20488 -[2499261.988056] print_req_error: I/O error, dev loop1, sector 5300096 -[2499261.988192] print_req_error: I/O error, dev loop1, sector 5300208 -[2499323.446519] print_req_error: 54 callbacks suppressed -[2499323.446520] print_req_error: I/O error, dev loop1, sector 9494400 -[2499323.446643] print_req_error: I/O error, dev loop1, sector 9494616 -[2499323.446773] print_req_error: I/O error, dev loop1, sector 5300224 -[2499323.446927] print_req_error: I/O error, dev loop1, sector 5300232 -[2499323.448940] print_req_error: I/O error, dev loop1, sector 85888 -[2499323.449103] print_req_error: I/O error, dev loop1, sector 86000 -[2499323.449161] print_req_error: I/O error, dev loop1, sector 20480 -[2499323.449291] print_req_error: I/O error, dev loop1, sector 20488 -[2499323.450739] print_req_error: I/O error, dev loop1, sector 5300096 -[2499323.450823] print_req_error: I/O error, dev loop1, sector 5300208 -[2520843.280826] print_req_error: 54 callbacks suppressed -[2520843.280827] print_req_error: I/O error, dev loop1, sector 9494400 -[2520843.281083] print_req_error: I/O error, dev loop1, sector 9494616 -[2520843.281158] print_req_error: I/O error, dev loop1, sector 5300224 -[2520843.281293] print_req_error: I/O error, dev loop1, sector 5300232 -[2520843.319983] print_req_error: I/O error, dev loop1, sector 85888 -[2520843.320096] print_req_error: I/O error, dev loop1, sector 86000 -[2520843.320261] print_req_error: I/O error, dev loop1, sector 20480 -[2520843.320414] print_req_error: I/O error, dev loop1, sector 20488 -[2520843.351829] print_req_error: I/O error, dev loop1, sector 5300096 -[2520843.351974] print_req_error: I/O error, dev loop1, sector 5300208 -[2520900.978009] print_req_error: 54 callbacks suppressed -[2520900.978010] print_req_error: I/O error, dev loop1, sector 9494400 -[2520900.978149] print_req_error: I/O error, dev loop1, sector 9494616 -[2520900.978224] print_req_error: I/O error, dev loop1, sector 5300224 -[2520900.978351] print_req_error: I/O error, dev loop1, sector 5300232 -[2520901.030631] print_req_error: I/O error, dev loop1, sector 85888 -[2520901.030781] print_req_error: I/O error, dev loop1, sector 86000 -[2520901.030848] print_req_error: I/O error, dev loop1, sector 20480 -[2520901.030920] print_req_error: I/O error, dev loop1, sector 20488 -[2520901.041341] print_req_error: I/O error, dev loop1, sector 5300096 -[2520901.041480] print_req_error: I/O error, dev loop1, sector 5300208 -[2542450.686954] print_req_error: 54 callbacks suppressed -[2542450.686956] print_req_error: I/O error, dev loop1, sector 9494400 -[2542450.687187] print_req_error: I/O error, dev loop1, sector 9494616 -[2542450.687267] print_req_error: I/O error, dev loop1, sector 5300224 -[2542450.687374] print_req_error: I/O error, dev loop1, sector 5300232 -[2542450.734988] print_req_error: I/O error, dev loop1, sector 85888 -[2542450.735139] print_req_error: I/O error, dev loop1, sector 86000 -[2542450.735291] print_req_error: I/O error, dev loop1, sector 20480 -[2542450.735441] print_req_error: I/O error, dev loop1, sector 20488 -[2542450.745541] print_req_error: I/O error, dev loop1, sector 5300096 -[2542450.745693] print_req_error: I/O error, dev loop1, sector 5300208 -[2542510.065446] print_req_error: 54 callbacks suppressed -[2542510.065448] print_req_error: I/O error, dev loop1, sector 9494400 -[2542510.065562] print_req_error: I/O error, dev loop1, sector 9494616 -[2542510.065622] print_req_error: I/O error, dev loop1, sector 5300224 -[2542510.065650] print_req_error: I/O error, dev loop1, sector 5300232 -[2542510.123230] print_req_error: I/O error, dev loop1, sector 85888 -[2542510.123379] print_req_error: I/O error, dev loop1, sector 86000 -[2542510.123519] print_req_error: I/O error, dev loop1, sector 20480 -[2542510.123663] print_req_error: I/O error, dev loop1, sector 20488 -[2542510.133786] print_req_error: I/O error, dev loop1, sector 5300096 -[2542510.133924] print_req_error: I/O error, dev loop1, sector 5300208 -[2564045.203961] print_req_error: 54 callbacks suppressed -[2564045.203962] print_req_error: I/O error, dev loop1, sector 9494400 -[2564045.204123] print_req_error: I/O error, dev loop1, sector 9494616 -[2564045.204186] print_req_error: I/O error, dev loop1, sector 5300224 -[2564045.204215] print_req_error: I/O error, dev loop1, sector 5300232 -[2564045.255472] print_req_error: I/O error, dev loop1, sector 85888 -[2564045.255599] print_req_error: I/O error, dev loop1, sector 86000 -[2564045.255744] print_req_error: I/O error, dev loop1, sector 20480 -[2564045.255842] print_req_error: I/O error, dev loop1, sector 20488 -[2564045.299007] print_req_error: I/O error, dev loop1, sector 5300096 -[2564045.299118] print_req_error: I/O error, dev loop1, sector 5300208 -[2564099.682454] print_req_error: 54 callbacks suppressed -[2564099.682456] print_req_error: I/O error, dev loop1, sector 9494400 -[2564099.682544] print_req_error: I/O error, dev loop1, sector 9494616 -[2564099.682609] print_req_error: I/O error, dev loop1, sector 5300224 -[2564099.682712] print_req_error: I/O error, dev loop1, sector 5300232 -[2564099.684605] print_req_error: I/O error, dev loop1, sector 85888 -[2564099.684726] print_req_error: I/O error, dev loop1, sector 86000 -[2564099.684823] print_req_error: I/O error, dev loop1, sector 20480 -[2564099.684913] print_req_error: I/O error, dev loop1, sector 20488 -[2564099.698660] print_req_error: I/O error, dev loop1, sector 5300096 -[2564099.698772] print_req_error: I/O error, dev loop1, sector 5300208 -[2585640.386471] print_req_error: 54 callbacks suppressed -[2585640.386473] print_req_error: I/O error, dev loop1, sector 9494400 -[2585640.386684] print_req_error: I/O error, dev loop1, sector 9494616 -[2585640.386747] print_req_error: I/O error, dev loop1, sector 5300224 -[2585640.386845] print_req_error: I/O error, dev loop1, sector 5300232 -[2585640.490270] print_req_error: I/O error, dev loop1, sector 85888 -[2585640.490372] print_req_error: I/O error, dev loop1, sector 86000 -[2585640.490509] print_req_error: I/O error, dev loop1, sector 20480 -[2585640.490604] print_req_error: I/O error, dev loop1, sector 20488 -[2585640.560227] print_req_error: I/O error, dev loop1, sector 5300096 -[2585640.560394] print_req_error: I/O error, dev loop1, sector 5300208 -[2585699.596860] print_req_error: 54 callbacks suppressed -[2585699.596861] print_req_error: I/O error, dev loop1, sector 9494400 -[2585699.596958] print_req_error: I/O error, dev loop1, sector 9494616 -[2585699.597006] print_req_error: I/O error, dev loop1, sector 5300224 -[2585699.597057] print_req_error: I/O error, dev loop1, sector 5300232 -[2585699.648223] print_req_error: I/O error, dev loop1, sector 85888 -[2585699.648388] print_req_error: I/O error, dev loop1, sector 86000 -[2585699.648536] print_req_error: I/O error, dev loop1, sector 20480 -[2585699.648637] print_req_error: I/O error, dev loop1, sector 20488 -[2585699.658832] print_req_error: I/O error, dev loop1, sector 5300096 -[2585699.658975] print_req_error: I/O error, dev loop1, sector 5300208 -[2607239.924971] print_req_error: 54 callbacks suppressed -[2607239.924973] print_req_error: I/O error, dev loop1, sector 9494400 -[2607239.925168] print_req_error: I/O error, dev loop1, sector 9494616 -[2607239.925228] print_req_error: I/O error, dev loop1, sector 5300224 -[2607239.925259] print_req_error: I/O error, dev loop1, sector 5300232 -[2607239.968843] print_req_error: I/O error, dev loop1, sector 85888 -[2607239.969008] print_req_error: I/O error, dev loop1, sector 86000 -[2607239.969091] print_req_error: I/O error, dev loop1, sector 20480 -[2607239.969255] print_req_error: I/O error, dev loop1, sector 20488 -[2607239.979299] print_req_error: I/O error, dev loop1, sector 5300096 -[2607239.979445] print_req_error: I/O error, dev loop1, sector 5300208 -[2607298.402303] print_req_error: 54 callbacks suppressed -[2607298.402304] print_req_error: I/O error, dev loop1, sector 9494400 -[2607298.402410] print_req_error: I/O error, dev loop1, sector 9494616 -[2607298.402466] print_req_error: I/O error, dev loop1, sector 5300224 -[2607298.402587] print_req_error: I/O error, dev loop1, sector 5300232 -[2607298.445597] print_req_error: I/O error, dev loop1, sector 85888 -[2607298.445741] print_req_error: I/O error, dev loop1, sector 86000 -[2607298.445885] print_req_error: I/O error, dev loop1, sector 20480 -[2607298.446035] print_req_error: I/O error, dev loop1, sector 20488 -[2607298.456281] print_req_error: I/O error, dev loop1, sector 5300096 -[2607298.456426] print_req_error: I/O error, dev loop1, sector 5300208 -[2628837.822047] print_req_error: 54 callbacks suppressed -[2628837.822048] print_req_error: I/O error, dev loop1, sector 9494400 -[2628837.822242] print_req_error: I/O error, dev loop1, sector 9494616 -[2628837.822308] print_req_error: I/O error, dev loop1, sector 5300224 -[2628837.822340] print_req_error: I/O error, dev loop1, sector 5300232 -[2628837.873366] print_req_error: I/O error, dev loop1, sector 85888 -[2628837.873515] print_req_error: I/O error, dev loop1, sector 86000 -[2628837.873657] print_req_error: I/O error, dev loop1, sector 20480 -[2628837.873764] print_req_error: I/O error, dev loop1, sector 20488 -[2628837.883752] print_req_error: I/O error, dev loop1, sector 5300096 -[2628837.883900] print_req_error: I/O error, dev loop1, sector 5300208 -[2628896.004288] print_req_error: 54 callbacks suppressed -[2628896.004290] print_req_error: I/O error, dev loop1, sector 9494400 -[2628896.004409] print_req_error: I/O error, dev loop1, sector 9494616 -[2628896.004480] print_req_error: I/O error, dev loop1, sector 5300224 -[2628896.004579] print_req_error: I/O error, dev loop1, sector 5300232 -[2628896.022008] print_req_error: I/O error, dev loop1, sector 85888 -[2628896.022118] print_req_error: I/O error, dev loop1, sector 86000 -[2628896.022227] print_req_error: I/O error, dev loop1, sector 20480 -[2628896.022335] print_req_error: I/O error, dev loop1, sector 20488 -[2628896.027460] print_req_error: I/O error, dev loop1, sector 5300096 -[2628896.027554] print_req_error: I/O error, dev loop1, sector 5300208 -[2650438.262483] print_req_error: 54 callbacks suppressed -[2650438.262485] print_req_error: I/O error, dev loop1, sector 9494400 -[2650438.262747] print_req_error: I/O error, dev loop1, sector 9494616 -[2650438.262817] print_req_error: I/O error, dev loop1, sector 5300224 -[2650438.262950] print_req_error: I/O error, dev loop1, sector 5300232 -[2650438.309559] print_req_error: I/O error, dev loop1, sector 85888 -[2650438.309743] print_req_error: I/O error, dev loop1, sector 86000 -[2650438.309830] print_req_error: I/O error, dev loop1, sector 20480 -[2650438.309974] print_req_error: I/O error, dev loop1, sector 20488 -[2650438.320558] print_req_error: I/O error, dev loop1, sector 5300096 -[2650438.320710] print_req_error: I/O error, dev loop1, sector 5300208 -[2650497.246965] print_req_error: 54 callbacks suppressed -[2650497.246967] print_req_error: I/O error, dev loop1, sector 9494400 -[2650497.247049] print_req_error: I/O error, dev loop1, sector 9494616 -[2650497.247086] print_req_error: I/O error, dev loop1, sector 5300224 -[2650497.247188] print_req_error: I/O error, dev loop1, sector 5300232 -[2650497.258079] print_req_error: I/O error, dev loop1, sector 85888 -[2650497.258191] print_req_error: I/O error, dev loop1, sector 86000 -[2650497.258251] print_req_error: I/O error, dev loop1, sector 20480 -[2650497.258374] print_req_error: I/O error, dev loop1, sector 20488 -[2650497.286243] print_req_error: I/O error, dev loop1, sector 5300096 -[2650497.286388] print_req_error: I/O error, dev loop1, sector 5300208 -[2672037.600551] print_req_error: 54 callbacks suppressed -[2672037.600552] print_req_error: I/O error, dev loop1, sector 9494400 -[2672037.600733] print_req_error: I/O error, dev loop1, sector 9494616 -[2672037.600836] print_req_error: I/O error, dev loop1, sector 5300224 -[2672037.600942] print_req_error: I/O error, dev loop1, sector 5300232 -[2672037.911080] print_req_error: I/O error, dev loop1, sector 85888 -[2672037.911252] print_req_error: I/O error, dev loop1, sector 86000 -[2672037.911338] print_req_error: I/O error, dev loop1, sector 20480 -[2672037.911409] print_req_error: I/O error, dev loop1, sector 20488 -[2672038.116902] print_req_error: I/O error, dev loop1, sector 5300096 -[2672038.117067] print_req_error: I/O error, dev loop1, sector 5300208 -[2672097.782012] print_req_error: 54 callbacks suppressed -[2672097.782014] print_req_error: I/O error, dev loop1, sector 9494400 -[2672097.782166] print_req_error: I/O error, dev loop1, sector 9494616 -[2672097.782274] print_req_error: I/O error, dev loop1, sector 5300224 -[2672097.782344] print_req_error: I/O error, dev loop1, sector 5300232 -[2672097.817002] print_req_error: I/O error, dev loop1, sector 85888 -[2672097.817144] print_req_error: I/O error, dev loop1, sector 86000 -[2672097.817221] print_req_error: I/O error, dev loop1, sector 20480 -[2672097.817375] print_req_error: I/O error, dev loop1, sector 20488 -[2672097.860971] print_req_error: I/O error, dev loop1, sector 5300096 -[2672097.861125] print_req_error: I/O error, dev loop1, sector 5300208 -[2693642.041832] print_req_error: 54 callbacks suppressed -[2693642.041833] print_req_error: I/O error, dev loop1, sector 9494400 -[2693642.042023] print_req_error: I/O error, dev loop1, sector 9494616 -[2693642.042085] print_req_error: I/O error, dev loop1, sector 5300224 -[2693642.042213] print_req_error: I/O error, dev loop1, sector 5300232 -[2693642.102519] print_req_error: I/O error, dev loop1, sector 85888 -[2693642.102699] print_req_error: I/O error, dev loop1, sector 86000 -[2693642.102850] print_req_error: I/O error, dev loop1, sector 20480 -[2693642.102998] print_req_error: I/O error, dev loop1, sector 20488 -[2693642.113049] print_req_error: I/O error, dev loop1, sector 5300096 -[2693642.113202] print_req_error: I/O error, dev loop1, sector 5300208 -[2693699.891841] print_req_error: 54 callbacks suppressed -[2693699.891842] print_req_error: I/O error, dev loop1, sector 9494400 -[2693699.891991] print_req_error: I/O error, dev loop1, sector 9494616 -[2693699.892051] print_req_error: I/O error, dev loop1, sector 5300224 -[2693699.892143] print_req_error: I/O error, dev loop1, sector 5300232 -[2693699.906214] print_req_error: I/O error, dev loop1, sector 85888 -[2693699.906325] print_req_error: I/O error, dev loop1, sector 86000 -[2693699.906384] print_req_error: I/O error, dev loop1, sector 20480 -[2693699.906475] print_req_error: I/O error, dev loop1, sector 20488 -[2693699.911921] print_req_error: I/O error, dev loop1, sector 5300096 -[2693699.912053] print_req_error: I/O error, dev loop1, sector 5300208 -[2715236.075419] print_req_error: 54 callbacks suppressed -[2715236.075420] print_req_error: I/O error, dev loop1, sector 9494400 -[2715236.075619] print_req_error: I/O error, dev loop1, sector 9494616 -[2715236.075682] print_req_error: I/O error, dev loop1, sector 5300224 -[2715236.075781] print_req_error: I/O error, dev loop1, sector 5300232 -[2715236.181342] print_req_error: I/O error, dev loop1, sector 85888 -[2715236.181498] print_req_error: I/O error, dev loop1, sector 86000 -[2715236.181646] print_req_error: I/O error, dev loop1, sector 20480 -[2715236.181802] print_req_error: I/O error, dev loop1, sector 20488 -[2715236.226301] print_req_error: I/O error, dev loop1, sector 5300096 -[2715236.226483] print_req_error: I/O error, dev loop1, sector 5300208 -[2715293.990452] print_req_error: 54 callbacks suppressed -[2715293.990454] print_req_error: I/O error, dev loop1, sector 9494400 -[2715293.990602] print_req_error: I/O error, dev loop1, sector 9494616 -[2715293.990663] print_req_error: I/O error, dev loop1, sector 5300224 -[2715293.990790] print_req_error: I/O error, dev loop1, sector 5300232 -[2715294.038690] print_req_error: I/O error, dev loop1, sector 85888 -[2715294.038834] print_req_error: I/O error, dev loop1, sector 86000 -[2715294.038978] print_req_error: I/O error, dev loop1, sector 20480 -[2715294.039116] print_req_error: I/O error, dev loop1, sector 20488 -[2715294.049167] print_req_error: I/O error, dev loop1, sector 5300096 -[2715294.049312] print_req_error: I/O error, dev loop1, sector 5300208 -[2736837.627712] print_req_error: 54 callbacks suppressed -[2736837.627714] print_req_error: I/O error, dev loop1, sector 9494400 -[2736837.627923] print_req_error: I/O error, dev loop1, sector 9494616 -[2736837.627995] print_req_error: I/O error, dev loop1, sector 5300224 -[2736837.628082] print_req_error: I/O error, dev loop1, sector 5300232 -[2736837.670124] print_req_error: I/O error, dev loop1, sector 85888 -[2736837.670291] print_req_error: I/O error, dev loop1, sector 86000 -[2736837.670390] print_req_error: I/O error, dev loop1, sector 20480 -[2736837.670546] print_req_error: I/O error, dev loop1, sector 20488 -[2736837.701903] print_req_error: I/O error, dev loop1, sector 5300096 -[2736837.702055] print_req_error: I/O error, dev loop1, sector 5300208 -[2736894.915792] print_req_error: 54 callbacks suppressed -[2736894.915794] print_req_error: I/O error, dev loop1, sector 9494400 -[2736894.915945] print_req_error: I/O error, dev loop1, sector 9494616 -[2736894.916011] print_req_error: I/O error, dev loop1, sector 5300224 -[2736894.916044] print_req_error: I/O error, dev loop1, sector 5300232 -[2736894.918335] print_req_error: I/O error, dev loop1, sector 85888 -[2736894.918472] print_req_error: I/O error, dev loop1, sector 86000 -[2736894.918551] print_req_error: I/O error, dev loop1, sector 20480 -[2736894.918601] print_req_error: I/O error, dev loop1, sector 20488 -[2736894.924535] print_req_error: I/O error, dev loop1, sector 5300096 -[2736894.924645] print_req_error: I/O error, dev loop1, sector 5300208 -[2758439.253962] print_req_error: 54 callbacks suppressed -[2758439.253964] print_req_error: I/O error, dev loop1, sector 9494400 -[2758439.254136] print_req_error: I/O error, dev loop1, sector 9494616 -[2758439.254234] print_req_error: I/O error, dev loop1, sector 5300224 -[2758439.254353] print_req_error: I/O error, dev loop1, sector 5300232 -[2758439.302007] print_req_error: I/O error, dev loop1, sector 85888 -[2758439.302167] print_req_error: I/O error, dev loop1, sector 86000 -[2758439.302259] print_req_error: I/O error, dev loop1, sector 20480 -[2758439.302416] print_req_error: I/O error, dev loop1, sector 20488 -[2758439.312317] print_req_error: I/O error, dev loop1, sector 5300096 -[2758439.312473] print_req_error: I/O error, dev loop1, sector 5300208 -[2758497.709296] print_req_error: 54 callbacks suppressed -[2758497.709298] print_req_error: I/O error, dev loop1, sector 9494400 -[2758497.709422] print_req_error: I/O error, dev loop1, sector 9494616 -[2758497.709486] print_req_error: I/O error, dev loop1, sector 5300224 -[2758497.709520] print_req_error: I/O error, dev loop1, sector 5300232 -[2758497.711161] print_req_error: I/O error, dev loop1, sector 85888 -[2758497.711312] print_req_error: I/O error, dev loop1, sector 86000 -[2758497.711387] print_req_error: I/O error, dev loop1, sector 20480 -[2758497.711504] print_req_error: I/O error, dev loop1, sector 20488 -[2758497.712560] print_req_error: I/O error, dev loop1, sector 5300096 -[2758497.712682] print_req_error: I/O error, dev loop1, sector 5300208 -[2780036.121667] print_req_error: 54 callbacks suppressed -[2780036.121668] print_req_error: I/O error, dev loop1, sector 9494400 -[2780036.121801] print_req_error: I/O error, dev loop1, sector 9494616 -[2780036.121836] print_req_error: I/O error, dev loop1, sector 5300224 -[2780036.121970] print_req_error: I/O error, dev loop1, sector 5300232 -[2780036.173720] print_req_error: I/O error, dev loop1, sector 85888 -[2780036.173889] print_req_error: I/O error, dev loop1, sector 86000 -[2780036.173972] print_req_error: I/O error, dev loop1, sector 20480 -[2780036.174117] print_req_error: I/O error, dev loop1, sector 20488 -[2780036.205487] print_req_error: I/O error, dev loop1, sector 5300096 -[2780036.205586] print_req_error: I/O error, dev loop1, sector 5300208 -[2780092.970132] print_req_error: 54 callbacks suppressed -[2780092.970156] print_req_error: I/O error, dev loop1, sector 9494400 -[2780092.970257] print_req_error: I/O error, dev loop1, sector 9494616 -[2780092.970319] print_req_error: I/O error, dev loop1, sector 5300224 -[2780092.970406] print_req_error: I/O error, dev loop1, sector 5300232 -[2780092.971506] print_req_error: I/O error, dev loop1, sector 85888 -[2780092.971588] print_req_error: I/O error, dev loop1, sector 86000 -[2780092.971616] print_req_error: I/O error, dev loop1, sector 20480 -[2780092.971684] print_req_error: I/O error, dev loop1, sector 20488 -[2780092.983513] print_req_error: I/O error, dev loop1, sector 5300096 -[2780092.983667] print_req_error: I/O error, dev loop1, sector 5300208 -[2801637.102362] print_req_error: 54 callbacks suppressed -[2801637.102364] print_req_error: I/O error, dev loop1, sector 9494400 -[2801637.102544] print_req_error: I/O error, dev loop1, sector 9494616 -[2801637.102678] print_req_error: I/O error, dev loop1, sector 5300224 -[2801637.102801] print_req_error: I/O error, dev loop1, sector 5300232 -[2801637.149329] print_req_error: I/O error, dev loop1, sector 85888 -[2801637.149496] print_req_error: I/O error, dev loop1, sector 86000 -[2801637.149590] print_req_error: I/O error, dev loop1, sector 20480 -[2801637.149745] print_req_error: I/O error, dev loop1, sector 20488 -[2801637.193116] print_req_error: I/O error, dev loop1, sector 5300096 -[2801637.193267] print_req_error: I/O error, dev loop1, sector 5300208 -[2801698.988086] print_req_error: 54 callbacks suppressed -[2801698.988088] print_req_error: I/O error, dev loop1, sector 9494400 -[2801698.988264] print_req_error: I/O error, dev loop1, sector 9494616 -[2801698.988328] print_req_error: I/O error, dev loop1, sector 5300224 -[2801698.988374] print_req_error: I/O error, dev loop1, sector 5300232 -[2801699.037381] print_req_error: I/O error, dev loop1, sector 85888 -[2801699.037524] print_req_error: I/O error, dev loop1, sector 86000 -[2801699.037602] print_req_error: I/O error, dev loop1, sector 20480 -[2801699.037739] print_req_error: I/O error, dev loop1, sector 20488 -[2801699.048017] print_req_error: I/O error, dev loop1, sector 5300096 -[2801699.048163] print_req_error: I/O error, dev loop1, sector 5300208 -[2823236.589303] print_req_error: 54 callbacks suppressed -[2823236.589305] print_req_error: I/O error, dev loop1, sector 9494400 -[2823236.589546] print_req_error: I/O error, dev loop1, sector 9494616 -[2823236.589611] print_req_error: I/O error, dev loop1, sector 5300224 -[2823236.589706] print_req_error: I/O error, dev loop1, sector 5300232 -[2823237.123073] print_req_error: I/O error, dev loop1, sector 85888 -[2823237.123244] print_req_error: I/O error, dev loop1, sector 86000 -[2823237.123328] print_req_error: I/O error, dev loop1, sector 20480 -[2823237.123469] print_req_error: I/O error, dev loop1, sector 20488 -[2823237.154731] print_req_error: I/O error, dev loop1, sector 5300096 -[2823237.154883] print_req_error: I/O error, dev loop1, sector 5300208 -[2823294.094139] print_req_error: 54 callbacks suppressed -[2823294.094140] print_req_error: I/O error, dev loop1, sector 9494400 -[2823294.094226] print_req_error: I/O error, dev loop1, sector 9494616 -[2823294.094293] print_req_error: I/O error, dev loop1, sector 5300224 -[2823294.094368] print_req_error: I/O error, dev loop1, sector 5300232 -[2823294.145004] print_req_error: I/O error, dev loop1, sector 85888 -[2823294.145141] print_req_error: I/O error, dev loop1, sector 86000 -[2823294.145215] print_req_error: I/O error, dev loop1, sector 20480 -[2823294.145341] print_req_error: I/O error, dev loop1, sector 20488 -[2823294.155207] print_req_error: I/O error, dev loop1, sector 5300096 -[2823294.155303] print_req_error: I/O error, dev loop1, sector 5300208 -[2844835.545593] print_req_error: 54 callbacks suppressed -[2844835.545595] print_req_error: I/O error, dev loop1, sector 9494400 -[2844835.545835] print_req_error: I/O error, dev loop1, sector 9494616 -[2844835.545901] print_req_error: I/O error, dev loop1, sector 5300224 -[2844835.545937] print_req_error: I/O error, dev loop1, sector 5300232 -[2844835.586263] print_req_error: I/O error, dev loop1, sector 85888 -[2844835.586417] print_req_error: I/O error, dev loop1, sector 86000 -[2844835.586562] print_req_error: I/O error, dev loop1, sector 20480 -[2844835.586710] print_req_error: I/O error, dev loop1, sector 20488 -[2844835.596654] print_req_error: I/O error, dev loop1, sector 5300096 -[2844835.596801] print_req_error: I/O error, dev loop1, sector 5300208 -[2844893.850206] print_req_error: 54 callbacks suppressed -[2844893.850208] print_req_error: I/O error, dev loop1, sector 9494400 -[2844893.850327] print_req_error: I/O error, dev loop1, sector 9494616 -[2844893.850387] print_req_error: I/O error, dev loop1, sector 5300224 -[2844893.850508] print_req_error: I/O error, dev loop1, sector 5300232 -[2844893.897174] print_req_error: I/O error, dev loop1, sector 85888 -[2844893.897306] print_req_error: I/O error, dev loop1, sector 86000 -[2844893.897459] print_req_error: I/O error, dev loop1, sector 20480 -[2844893.897602] print_req_error: I/O error, dev loop1, sector 20488 -[2844893.907478] print_req_error: I/O error, dev loop1, sector 5300096 -[2844893.907623] print_req_error: I/O error, dev loop1, sector 5300208 -[2866436.206426] print_req_error: 54 callbacks suppressed -[2866436.206428] print_req_error: I/O error, dev loop1, sector 9494400 -[2866436.206653] print_req_error: I/O error, dev loop1, sector 9494616 -[2866436.206711] print_req_error: I/O error, dev loop1, sector 5300224 -[2866436.206794] print_req_error: I/O error, dev loop1, sector 5300232 -[2866436.257428] print_req_error: I/O error, dev loop1, sector 85888 -[2866436.257588] print_req_error: I/O error, dev loop1, sector 86000 -[2866436.257658] print_req_error: I/O error, dev loop1, sector 20480 -[2866436.257781] print_req_error: I/O error, dev loop1, sector 20488 -[2866436.268068] print_req_error: I/O error, dev loop1, sector 5300096 -[2866436.268209] print_req_error: I/O error, dev loop1, sector 5300208 -[2866493.831641] print_req_error: 54 callbacks suppressed -[2866493.831642] print_req_error: I/O error, dev loop1, sector 9494400 -[2866493.831724] print_req_error: I/O error, dev loop1, sector 9494616 -[2866493.831758] print_req_error: I/O error, dev loop1, sector 5300224 -[2866493.831825] print_req_error: I/O error, dev loop1, sector 5300232 -[2866493.867705] print_req_error: I/O error, dev loop1, sector 85888 -[2866493.867788] print_req_error: I/O error, dev loop1, sector 86000 -[2866493.867855] print_req_error: I/O error, dev loop1, sector 20480 -[2866493.867927] print_req_error: I/O error, dev loop1, sector 20488 -[2866493.911999] print_req_error: I/O error, dev loop1, sector 5300096 -[2866493.912131] print_req_error: I/O error, dev loop1, sector 5300208 -[2888040.321150] print_req_error: 54 callbacks suppressed -[2888040.321152] print_req_error: I/O error, dev loop1, sector 9494400 -[2888040.321346] print_req_error: I/O error, dev loop1, sector 9494616 -[2888040.321408] print_req_error: I/O error, dev loop1, sector 5300224 -[2888040.321534] print_req_error: I/O error, dev loop1, sector 5300232 -[2888040.399396] print_req_error: I/O error, dev loop1, sector 85888 -[2888040.399545] print_req_error: I/O error, dev loop1, sector 86000 -[2888040.399641] print_req_error: I/O error, dev loop1, sector 20480 -[2888040.399789] print_req_error: I/O error, dev loop1, sector 20488 -[2888040.420874] print_req_error: I/O error, dev loop1, sector 5300096 -[2888040.421026] print_req_error: I/O error, dev loop1, sector 5300208 -[2888099.802044] print_req_error: 54 callbacks suppressed -[2888099.802045] print_req_error: I/O error, dev loop1, sector 9494400 -[2888099.802117] print_req_error: I/O error, dev loop1, sector 9494616 -[2888099.802168] print_req_error: I/O error, dev loop1, sector 5300224 -[2888099.802204] print_req_error: I/O error, dev loop1, sector 5300232 -[2888099.825369] print_req_error: I/O error, dev loop1, sector 85888 -[2888099.825451] print_req_error: I/O error, dev loop1, sector 86000 -[2888099.825517] print_req_error: I/O error, dev loop1, sector 20480 -[2888099.825584] print_req_error: I/O error, dev loop1, sector 20488 -[2888099.830689] print_req_error: I/O error, dev loop1, sector 5300096 -[2888099.830757] print_req_error: I/O error, dev loop1, sector 5300208 -[2909633.848576] print_req_error: 54 callbacks suppressed -[2909633.848578] print_req_error: I/O error, dev loop1, sector 9494400 -[2909633.848792] print_req_error: I/O error, dev loop1, sector 9494616 -[2909633.848886] print_req_error: I/O error, dev loop1, sector 5300224 -[2909633.848977] print_req_error: I/O error, dev loop1, sector 5300232 -[2909633.895892] print_req_error: I/O error, dev loop1, sector 85888 -[2909633.896003] print_req_error: I/O error, dev loop1, sector 86000 -[2909633.896139] print_req_error: I/O error, dev loop1, sector 20480 -[2909633.896277] print_req_error: I/O error, dev loop1, sector 20488 -[2909633.939700] print_req_error: I/O error, dev loop1, sector 5300096 -[2909633.939850] print_req_error: I/O error, dev loop1, sector 5300208 -[2909692.509340] print_req_error: 54 callbacks suppressed -[2909692.509342] print_req_error: I/O error, dev loop1, sector 9494400 -[2909692.509458] print_req_error: I/O error, dev loop1, sector 9494616 -[2909692.509522] print_req_error: I/O error, dev loop1, sector 5300224 -[2909692.509644] print_req_error: I/O error, dev loop1, sector 5300232 -[2909692.511192] print_req_error: I/O error, dev loop1, sector 85888 -[2909692.511296] print_req_error: I/O error, dev loop1, sector 86000 -[2909692.511355] print_req_error: I/O error, dev loop1, sector 20480 -[2909692.511447] print_req_error: I/O error, dev loop1, sector 20488 -[2909692.539275] print_req_error: I/O error, dev loop1, sector 5300096 -[2909692.539398] print_req_error: I/O error, dev loop1, sector 5300208 -[2931236.578934] print_req_error: 54 callbacks suppressed -[2931236.578936] print_req_error: I/O error, dev loop1, sector 9494400 -[2931236.579183] print_req_error: I/O error, dev loop1, sector 9494616 -[2931236.579254] print_req_error: I/O error, dev loop1, sector 5300224 -[2931236.579326] print_req_error: I/O error, dev loop1, sector 5300232 -[2931236.625290] print_req_error: I/O error, dev loop1, sector 85888 -[2931236.625457] print_req_error: I/O error, dev loop1, sector 86000 -[2931236.625553] print_req_error: I/O error, dev loop1, sector 20480 -[2931236.625704] print_req_error: I/O error, dev loop1, sector 20488 -[2931236.635509] print_req_error: I/O error, dev loop1, sector 5300096 -[2931236.635695] print_req_error: I/O error, dev loop1, sector 5300208 -[2931292.770310] print_req_error: 54 callbacks suppressed -[2931292.770311] print_req_error: I/O error, dev loop1, sector 9494400 -[2931292.770383] print_req_error: I/O error, dev loop1, sector 9494616 -[2931292.770447] print_req_error: I/O error, dev loop1, sector 5300224 -[2931292.770533] print_req_error: I/O error, dev loop1, sector 5300232 -[2931292.784678] print_req_error: I/O error, dev loop1, sector 85888 -[2931292.784793] print_req_error: I/O error, dev loop1, sector 86000 -[2931292.784906] print_req_error: I/O error, dev loop1, sector 20480 -[2931292.785020] print_req_error: I/O error, dev loop1, sector 20488 -[2931292.790256] print_req_error: I/O error, dev loop1, sector 5300096 -[2931292.790413] print_req_error: I/O error, dev loop1, sector 5300208 -[2952859.457978] print_req_error: 54 callbacks suppressed -[2952859.457979] print_req_error: I/O error, dev loop1, sector 9494400 -[2952859.458200] print_req_error: I/O error, dev loop1, sector 9494616 -[2952859.458260] print_req_error: I/O error, dev loop1, sector 5300224 -[2952859.458355] print_req_error: I/O error, dev loop1, sector 5300232 -[2952859.468678] print_req_error: I/O error, dev loop1, sector 85888 -[2952859.468789] print_req_error: I/O error, dev loop1, sector 86000 -[2952859.468906] print_req_error: I/O error, dev loop1, sector 20480 -[2952859.469016] print_req_error: I/O error, dev loop1, sector 20488 -[2952859.474360] print_req_error: I/O error, dev loop1, sector 5300096 -[2952859.474490] print_req_error: I/O error, dev loop1, sector 5300208 -[2952919.959887] print_req_error: 54 callbacks suppressed -[2952919.959888] print_req_error: I/O error, dev loop1, sector 9494400 -[2952919.960046] print_req_error: I/O error, dev loop1, sector 9494616 -[2952919.960112] print_req_error: I/O error, dev loop1, sector 5300224 -[2952919.960216] print_req_error: I/O error, dev loop1, sector 5300232 -[2952919.979258] print_req_error: I/O error, dev loop1, sector 85888 -[2952919.979382] print_req_error: I/O error, dev loop1, sector 86000 -[2952919.979505] print_req_error: I/O error, dev loop1, sector 20480 -[2952919.979631] print_req_error: I/O error, dev loop1, sector 20488 -[2952919.985305] print_req_error: I/O error, dev loop1, sector 5300096 -[2952919.985473] print_req_error: I/O error, dev loop1, sector 5300208 -[2974438.403854] print_req_error: 54 callbacks suppressed -[2974438.403856] print_req_error: I/O error, dev loop1, sector 9494400 -[2974438.404102] print_req_error: I/O error, dev loop1, sector 9494616 -[2974438.404168] print_req_error: I/O error, dev loop1, sector 5300224 -[2974438.404301] print_req_error: I/O error, dev loop1, sector 5300232 -[2974438.446573] print_req_error: I/O error, dev loop1, sector 85888 -[2974438.446755] print_req_error: I/O error, dev loop1, sector 86000 -[2974438.446918] print_req_error: I/O error, dev loop1, sector 20480 -[2974438.447054] print_req_error: I/O error, dev loop1, sector 20488 -[2974438.457171] print_req_error: I/O error, dev loop1, sector 5300096 -[2974438.457319] print_req_error: I/O error, dev loop1, sector 5300208 -[2974495.048081] print_req_error: 54 callbacks suppressed -[2974495.048082] print_req_error: I/O error, dev loop1, sector 9494400 -[2974495.048154] print_req_error: I/O error, dev loop1, sector 9494616 -[2974495.048205] print_req_error: I/O error, dev loop1, sector 5300224 -[2974495.048270] print_req_error: I/O error, dev loop1, sector 5300232 -[2974495.165834] print_req_error: I/O error, dev loop1, sector 85888 -[2974495.165954] print_req_error: I/O error, dev loop1, sector 86000 -[2974495.166058] print_req_error: I/O error, dev loop1, sector 20480 -[2974495.166128] print_req_error: I/O error, dev loop1, sector 20488 -[2974495.211023] print_req_error: I/O error, dev loop1, sector 5300096 -[2974495.211165] print_req_error: I/O error, dev loop1, sector 5300208 -[2996033.988114] print_req_error: 54 callbacks suppressed -[2996033.988116] print_req_error: I/O error, dev loop1, sector 9494400 -[2996033.988350] print_req_error: I/O error, dev loop1, sector 9494616 -[2996033.988415] print_req_error: I/O error, dev loop1, sector 5300224 -[2996033.988545] print_req_error: I/O error, dev loop1, sector 5300232 -[2996033.990619] print_req_error: I/O error, dev loop1, sector 85888 -[2996033.990746] print_req_error: I/O error, dev loop1, sector 86000 -[2996033.990818] print_req_error: I/O error, dev loop1, sector 20480 -[2996033.990963] print_req_error: I/O error, dev loop1, sector 20488 -[2996034.043058] print_req_error: I/O error, dev loop1, sector 5300096 -[2996034.043221] print_req_error: I/O error, dev loop1, sector 5300208 -[2996088.856635] print_req_error: 54 callbacks suppressed -[2996088.856637] print_req_error: I/O error, dev loop1, sector 9494400 -[2996088.856790] print_req_error: I/O error, dev loop1, sector 9494616 -[2996088.856854] print_req_error: I/O error, dev loop1, sector 5300224 -[2996088.856951] print_req_error: I/O error, dev loop1, sector 5300232 -[2996088.858696] print_req_error: I/O error, dev loop1, sector 85888 -[2996088.858798] print_req_error: I/O error, dev loop1, sector 86000 -[2996088.858912] print_req_error: I/O error, dev loop1, sector 20480 -[2996088.859053] print_req_error: I/O error, dev loop1, sector 20488 -[2996088.864200] print_req_error: I/O error, dev loop1, sector 5300096 -[2996088.864284] print_req_error: I/O error, dev loop1, sector 5300208 -[3017643.020541] print_req_error: 54 callbacks suppressed -[3017643.020542] print_req_error: I/O error, dev loop1, sector 9494400 -[3017643.020763] print_req_error: I/O error, dev loop1, sector 9494616 -[3017643.020832] print_req_error: I/O error, dev loop1, sector 5300224 -[3017643.020933] print_req_error: I/O error, dev loop1, sector 5300232 -[3017643.023060] print_req_error: I/O error, dev loop1, sector 85888 -[3017643.023197] print_req_error: I/O error, dev loop1, sector 86000 -[3017643.023270] print_req_error: I/O error, dev loop1, sector 20480 -[3017643.023419] print_req_error: I/O error, dev loop1, sector 20488 -[3017643.071245] print_req_error: I/O error, dev loop1, sector 5300096 -[3017643.071415] print_req_error: I/O error, dev loop1, sector 5300208 -[3017703.145099] print_req_error: 54 callbacks suppressed -[3017703.145101] print_req_error: I/O error, dev loop1, sector 9494400 -[3017703.145152] print_req_error: I/O error, dev loop1, sector 9494616 -[3017703.145186] print_req_error: I/O error, dev loop1, sector 5300224 -[3017703.145212] print_req_error: I/O error, dev loop1, sector 5300232 -[3017703.147404] print_req_error: I/O error, dev loop1, sector 85888 -[3017703.147446] print_req_error: I/O error, dev loop1, sector 86000 -[3017703.147475] print_req_error: I/O error, dev loop1, sector 20480 -[3017703.147501] print_req_error: I/O error, dev loop1, sector 20488 -[3017703.236316] print_req_error: I/O error, dev loop1, sector 5300096 -[3017703.236466] print_req_error: I/O error, dev loop1, sector 5300208 -[3039236.023366] print_req_error: 54 callbacks suppressed -[3039236.023367] print_req_error: I/O error, dev loop1, sector 9494400 -[3039236.023593] print_req_error: I/O error, dev loop1, sector 9494616 -[3039236.023665] print_req_error: I/O error, dev loop1, sector 5300224 -[3039236.023695] print_req_error: I/O error, dev loop1, sector 5300232 -[3039236.069107] print_req_error: I/O error, dev loop1, sector 85888 -[3039236.069268] print_req_error: I/O error, dev loop1, sector 86000 -[3039236.069363] print_req_error: I/O error, dev loop1, sector 20480 -[3039236.069522] print_req_error: I/O error, dev loop1, sector 20488 -[3039236.079332] print_req_error: I/O error, dev loop1, sector 5300096 -[3039236.079486] print_req_error: I/O error, dev loop1, sector 5300208 -[3039295.853058] print_req_error: 54 callbacks suppressed -[3039295.853060] print_req_error: I/O error, dev loop1, sector 9494400 -[3039295.853168] print_req_error: I/O error, dev loop1, sector 9494616 -[3039295.853226] print_req_error: I/O error, dev loop1, sector 5300224 -[3039295.853349] print_req_error: I/O error, dev loop1, sector 5300232 -[3039295.890612] print_req_error: I/O error, dev loop1, sector 85888 -[3039295.890767] print_req_error: I/O error, dev loop1, sector 86000 -[3039295.890836] print_req_error: I/O error, dev loop1, sector 20480 -[3039295.890920] print_req_error: I/O error, dev loop1, sector 20488 -[3039295.934533] print_req_error: I/O error, dev loop1, sector 5300096 -[3039295.934683] print_req_error: I/O error, dev loop1, sector 5300208 -[3060838.815272] print_req_error: 54 callbacks suppressed -[3060838.815273] print_req_error: I/O error, dev loop1, sector 9494400 -[3060838.815442] print_req_error: I/O error, dev loop1, sector 9494616 -[3060838.815516] print_req_error: I/O error, dev loop1, sector 5300224 -[3060838.815547] print_req_error: I/O error, dev loop1, sector 5300232 -[3060841.768061] print_req_error: I/O error, dev loop1, sector 85888 -[3060841.768225] print_req_error: I/O error, dev loop1, sector 86000 -[3060841.768315] print_req_error: I/O error, dev loop1, sector 20480 -[3060841.768491] print_req_error: I/O error, dev loop1, sector 20488 -[3060842.411262] print_req_error: I/O error, dev loop1, sector 5300096 -[3060842.411418] print_req_error: I/O error, dev loop1, sector 5300208 -[3060899.976945] print_req_error: 54 callbacks suppressed -[3060899.976946] print_req_error: I/O error, dev loop1, sector 9494400 -[3060899.977025] print_req_error: I/O error, dev loop1, sector 9494616 -[3060899.977059] print_req_error: I/O error, dev loop1, sector 5300224 -[3060899.977126] print_req_error: I/O error, dev loop1, sector 5300232 -[3060900.096652] print_req_error: I/O error, dev loop1, sector 85888 -[3060900.096809] print_req_error: I/O error, dev loop1, sector 86000 -[3060900.096951] print_req_error: I/O error, dev loop1, sector 20480 -[3060900.097041] print_req_error: I/O error, dev loop1, sector 20488 -[3060900.146757] print_req_error: I/O error, dev loop1, sector 5300096 -[3060900.146899] print_req_error: I/O error, dev loop1, sector 5300208 -[3082443.106383] print_req_error: 54 callbacks suppressed -[3082443.106384] print_req_error: I/O error, dev loop1, sector 9494400 -[3082443.106624] print_req_error: I/O error, dev loop1, sector 9494616 -[3082443.106675] print_req_error: I/O error, dev loop1, sector 5300224 -[3082443.106775] print_req_error: I/O error, dev loop1, sector 5300232 -[3082443.137001] print_req_error: I/O error, dev loop1, sector 85888 -[3082443.137142] print_req_error: I/O error, dev loop1, sector 86000 -[3082443.137226] print_req_error: I/O error, dev loop1, sector 20480 -[3082443.137362] print_req_error: I/O error, dev loop1, sector 20488 -[3082443.165586] print_req_error: I/O error, dev loop1, sector 5300096 -[3082443.165740] print_req_error: I/O error, dev loop1, sector 5300208 -[3082532.530318] print_req_error: 54 callbacks suppressed -[3082532.530320] print_req_error: I/O error, dev loop1, sector 9494400 -[3082532.530467] print_req_error: I/O error, dev loop1, sector 9494616 -[3082532.530524] print_req_error: I/O error, dev loop1, sector 5300224 -[3082532.530615] print_req_error: I/O error, dev loop1, sector 5300232 -[3082532.576196] print_req_error: I/O error, dev loop1, sector 85888 -[3082532.576332] print_req_error: I/O error, dev loop1, sector 86000 -[3082532.576466] print_req_error: I/O error, dev loop1, sector 20480 -[3082532.576605] print_req_error: I/O error, dev loop1, sector 20488 -[3082532.586767] print_req_error: I/O error, dev loop1, sector 5300096 -[3082532.586859] print_req_error: I/O error, dev loop1, sector 5300208 -[3104039.311075] print_req_error: 54 callbacks suppressed -[3104039.311077] print_req_error: I/O error, dev loop1, sector 9494400 -[3104039.311310] print_req_error: I/O error, dev loop1, sector 9494616 -[3104039.311374] print_req_error: I/O error, dev loop1, sector 5300224 -[3104039.311472] print_req_error: I/O error, dev loop1, sector 5300232 -[3104039.371578] print_req_error: I/O error, dev loop1, sector 85888 -[3104039.371733] print_req_error: I/O error, dev loop1, sector 86000 -[3104039.371812] print_req_error: I/O error, dev loop1, sector 20480 -[3104039.371954] print_req_error: I/O error, dev loop1, sector 20488 -[3104039.382318] print_req_error: I/O error, dev loop1, sector 5300096 -[3104039.382479] print_req_error: I/O error, dev loop1, sector 5300208 -[3104096.896355] print_req_error: 54 callbacks suppressed -[3104096.896357] print_req_error: I/O error, dev loop1, sector 9494400 -[3104096.896446] print_req_error: I/O error, dev loop1, sector 9494616 -[3104096.896509] print_req_error: I/O error, dev loop1, sector 5300224 -[3104096.896549] print_req_error: I/O error, dev loop1, sector 5300232 -[3104096.948990] print_req_error: I/O error, dev loop1, sector 85888 -[3104096.949140] print_req_error: I/O error, dev loop1, sector 86000 -[3104096.949290] print_req_error: I/O error, dev loop1, sector 20480 -[3104096.949443] print_req_error: I/O error, dev loop1, sector 20488 -[3104096.959393] print_req_error: I/O error, dev loop1, sector 5300096 -[3104096.959539] print_req_error: I/O error, dev loop1, sector 5300208 -[3125636.865105] print_req_error: 54 callbacks suppressed -[3125636.865106] print_req_error: I/O error, dev loop1, sector 9494400 -[3125636.865313] print_req_error: I/O error, dev loop1, sector 9494616 -[3125636.865373] print_req_error: I/O error, dev loop1, sector 5300224 -[3125636.865509] print_req_error: I/O error, dev loop1, sector 5300232 -[3125636.923574] print_req_error: I/O error, dev loop1, sector 85888 -[3125636.923650] print_req_error: I/O error, dev loop1, sector 86000 -[3125636.923685] print_req_error: I/O error, dev loop1, sector 20480 -[3125636.923731] print_req_error: I/O error, dev loop1, sector 20488 -[3125636.934304] print_req_error: I/O error, dev loop1, sector 5300096 -[3125636.934374] print_req_error: I/O error, dev loop1, sector 5300208 -[3125692.305122] print_req_error: 54 callbacks suppressed -[3125692.305123] print_req_error: I/O error, dev loop1, sector 9494400 -[3125692.305231] print_req_error: I/O error, dev loop1, sector 9494616 -[3125692.305289] print_req_error: I/O error, dev loop1, sector 5300224 -[3125692.305400] print_req_error: I/O error, dev loop1, sector 5300232 -[3125692.394529] print_req_error: I/O error, dev loop1, sector 85888 -[3125692.394675] print_req_error: I/O error, dev loop1, sector 86000 -[3125692.394821] print_req_error: I/O error, dev loop1, sector 20480 -[3125692.394965] print_req_error: I/O error, dev loop1, sector 20488 -[3125692.421724] print_req_error: I/O error, dev loop1, sector 5300096 -[3125692.421867] print_req_error: I/O error, dev loop1, sector 5300208 -[3147235.729527] print_req_error: 54 callbacks suppressed -[3147235.729528] print_req_error: I/O error, dev loop1, sector 9494400 -[3147235.729767] print_req_error: I/O error, dev loop1, sector 9494616 -[3147235.729843] print_req_error: I/O error, dev loop1, sector 5300224 -[3147235.729952] print_req_error: I/O error, dev loop1, sector 5300232 -[3147235.779882] print_req_error: I/O error, dev loop1, sector 85888 -[3147235.780039] print_req_error: I/O error, dev loop1, sector 86000 -[3147235.780126] print_req_error: I/O error, dev loop1, sector 20480 -[3147235.780277] print_req_error: I/O error, dev loop1, sector 20488 -[3147235.790471] print_req_error: I/O error, dev loop1, sector 5300096 -[3147235.790629] print_req_error: I/O error, dev loop1, sector 5300208 -[3147295.513257] print_req_error: 54 callbacks suppressed -[3147295.513259] print_req_error: I/O error, dev loop1, sector 9494400 -[3147295.513342] print_req_error: I/O error, dev loop1, sector 9494616 -[3147295.513376] print_req_error: I/O error, dev loop1, sector 5300224 -[3147295.513444] print_req_error: I/O error, dev loop1, sector 5300232 -[3147295.680616] print_req_error: I/O error, dev loop1, sector 85888 -[3147295.680774] print_req_error: I/O error, dev loop1, sector 86000 -[3147295.680930] print_req_error: I/O error, dev loop1, sector 20480 -[3147295.681012] print_req_error: I/O error, dev loop1, sector 20488 -[3147295.738432] print_req_error: I/O error, dev loop1, sector 5300096 -[3147295.738577] print_req_error: I/O error, dev loop1, sector 5300208 -[3168835.116700] print_req_error: 54 callbacks suppressed -[3168835.116701] print_req_error: I/O error, dev loop1, sector 9494400 -[3168835.116966] print_req_error: I/O error, dev loop1, sector 9494616 -[3168835.117037] print_req_error: I/O error, dev loop1, sector 5300224 -[3168835.117134] print_req_error: I/O error, dev loop1, sector 5300232 -[3168835.178088] print_req_error: I/O error, dev loop1, sector 85888 -[3168835.178251] print_req_error: I/O error, dev loop1, sector 86000 -[3168835.178340] print_req_error: I/O error, dev loop1, sector 20480 -[3168835.178488] print_req_error: I/O error, dev loop1, sector 20488 -[3168835.188297] print_req_error: I/O error, dev loop1, sector 5300096 -[3168835.188457] print_req_error: I/O error, dev loop1, sector 5300208 -[3168891.869300] print_req_error: 54 callbacks suppressed -[3168891.869302] print_req_error: I/O error, dev loop1, sector 9494400 -[3168891.869397] print_req_error: I/O error, dev loop1, sector 9494616 -[3168891.869426] print_req_error: I/O error, dev loop1, sector 5300224 -[3168891.869477] print_req_error: I/O error, dev loop1, sector 5300232 -[3168891.921766] print_req_error: I/O error, dev loop1, sector 85888 -[3168891.921900] print_req_error: I/O error, dev loop1, sector 86000 -[3168891.922033] print_req_error: I/O error, dev loop1, sector 20480 -[3168891.922202] print_req_error: I/O error, dev loop1, sector 20488 -[3168891.932414] print_req_error: I/O error, dev loop1, sector 5300096 -[3168891.932579] print_req_error: I/O error, dev loop1, sector 5300208 -[3190434.647128] print_req_error: 54 callbacks suppressed -[3190434.647130] print_req_error: I/O error, dev loop1, sector 9494400 -[3190434.647402] print_req_error: I/O error, dev loop1, sector 9494616 -[3190434.647479] print_req_error: I/O error, dev loop1, sector 5300224 -[3190434.647616] print_req_error: I/O error, dev loop1, sector 5300232 -[3190434.706983] print_req_error: I/O error, dev loop1, sector 85888 -[3190434.707148] print_req_error: I/O error, dev loop1, sector 86000 -[3190434.707236] print_req_error: I/O error, dev loop1, sector 20480 -[3190434.707389] print_req_error: I/O error, dev loop1, sector 20488 -[3190434.717429] print_req_error: I/O error, dev loop1, sector 5300096 -[3190434.717596] print_req_error: I/O error, dev loop1, sector 5300208 -[3190493.793657] print_req_error: 54 callbacks suppressed -[3190493.793658] print_req_error: I/O error, dev loop1, sector 9494400 -[3190493.793764] print_req_error: I/O error, dev loop1, sector 9494616 -[3190493.793822] print_req_error: I/O error, dev loop1, sector 5300224 -[3190493.793861] print_req_error: I/O error, dev loop1, sector 5300232 -[3190493.828428] print_req_error: I/O error, dev loop1, sector 85888 -[3190493.828571] print_req_error: I/O error, dev loop1, sector 86000 -[3190493.828649] print_req_error: I/O error, dev loop1, sector 20480 -[3190493.828792] print_req_error: I/O error, dev loop1, sector 20488 -[3190493.872480] print_req_error: I/O error, dev loop1, sector 5300096 -[3190493.872616] print_req_error: I/O error, dev loop1, sector 5300208 -[3212038.731204] print_req_error: 54 callbacks suppressed -[3212038.731206] print_req_error: I/O error, dev loop1, sector 9494400 -[3212038.731479] print_req_error: I/O error, dev loop1, sector 9494616 -[3212038.731563] print_req_error: I/O error, dev loop1, sector 5300224 -[3212038.731695] print_req_error: I/O error, dev loop1, sector 5300232 -[3212038.793278] print_req_error: I/O error, dev loop1, sector 85888 -[3212038.793420] print_req_error: I/O error, dev loop1, sector 86000 -[3212038.793561] print_req_error: I/O error, dev loop1, sector 20480 -[3212038.793709] print_req_error: I/O error, dev loop1, sector 20488 -[3212038.803782] print_req_error: I/O error, dev loop1, sector 5300096 -[3212038.803924] print_req_error: I/O error, dev loop1, sector 5300208 -[3212096.443414] print_req_error: 54 callbacks suppressed -[3212096.443416] print_req_error: I/O error, dev loop1, sector 9494400 -[3212096.443548] print_req_error: I/O error, dev loop1, sector 9494616 -[3212096.443648] print_req_error: I/O error, dev loop1, sector 5300224 -[3212096.443706] print_req_error: I/O error, dev loop1, sector 5300232 -[3212096.492853] print_req_error: I/O error, dev loop1, sector 85888 -[3212096.492995] print_req_error: I/O error, dev loop1, sector 86000 -[3212096.493135] print_req_error: I/O error, dev loop1, sector 20480 -[3212096.493274] print_req_error: I/O error, dev loop1, sector 20488 -[3212096.503336] print_req_error: I/O error, dev loop1, sector 5300096 -[3212096.503478] print_req_error: I/O error, dev loop1, sector 5300208 -[3233640.342726] print_req_error: 54 callbacks suppressed -[3233640.342728] print_req_error: I/O error, dev loop1, sector 9494400 -[3233640.342956] print_req_error: I/O error, dev loop1, sector 9494616 -[3233640.343021] print_req_error: I/O error, dev loop1, sector 5300224 -[3233640.343150] print_req_error: I/O error, dev loop1, sector 5300232 -[3233640.518237] print_req_error: I/O error, dev loop1, sector 85888 -[3233640.518422] print_req_error: I/O error, dev loop1, sector 86000 -[3233640.518568] print_req_error: I/O error, dev loop1, sector 20480 -[3233640.518812] print_req_error: I/O error, dev loop1, sector 20488 -[3233640.605979] print_req_error: I/O error, dev loop1, sector 5300096 -[3233640.606127] print_req_error: I/O error, dev loop1, sector 5300208 -[3233698.158090] print_req_error: 54 callbacks suppressed -[3233698.158091] print_req_error: I/O error, dev loop1, sector 9494400 -[3233698.158176] print_req_error: I/O error, dev loop1, sector 9494616 -[3233698.158209] print_req_error: I/O error, dev loop1, sector 5300224 -[3233698.158277] print_req_error: I/O error, dev loop1, sector 5300232 -[3233698.173031] print_req_error: I/O error, dev loop1, sector 85888 -[3233698.173177] print_req_error: I/O error, dev loop1, sector 86000 -[3233698.173225] print_req_error: I/O error, dev loop1, sector 20480 -[3233698.173369] print_req_error: I/O error, dev loop1, sector 20488 -[3233698.178751] print_req_error: I/O error, dev loop1, sector 5300096 -[3233698.178856] print_req_error: I/O error, dev loop1, sector 5300208 -[3255236.883197] print_req_error: 54 callbacks suppressed -[3255236.883198] print_req_error: I/O error, dev loop1, sector 9494400 -[3255236.883439] print_req_error: I/O error, dev loop1, sector 9494616 -[3255236.883506] print_req_error: I/O error, dev loop1, sector 5300224 -[3255236.883637] print_req_error: I/O error, dev loop1, sector 5300232 -[3255236.928203] print_req_error: I/O error, dev loop1, sector 85888 -[3255236.928306] print_req_error: I/O error, dev loop1, sector 86000 -[3255236.928385] print_req_error: I/O error, dev loop1, sector 20480 -[3255236.928541] print_req_error: I/O error, dev loop1, sector 20488 -[3255236.938857] print_req_error: I/O error, dev loop1, sector 5300096 -[3255236.939005] print_req_error: I/O error, dev loop1, sector 5300208 -[3255296.185782] print_req_error: 54 callbacks suppressed -[3255296.185784] print_req_error: I/O error, dev loop1, sector 9494400 -[3255296.185944] print_req_error: I/O error, dev loop1, sector 9494616 -[3255296.186017] print_req_error: I/O error, dev loop1, sector 5300224 -[3255296.186151] print_req_error: I/O error, dev loop1, sector 5300232 -[3255296.250069] print_req_error: I/O error, dev loop1, sector 85888 -[3255296.250211] print_req_error: I/O error, dev loop1, sector 86000 -[3255296.250305] print_req_error: I/O error, dev loop1, sector 20480 -[3255296.250457] print_req_error: I/O error, dev loop1, sector 20488 -[3255296.260370] print_req_error: I/O error, dev loop1, sector 5300096 -[3255296.260534] print_req_error: I/O error, dev loop1, sector 5300208 -[3276838.471936] print_req_error: 54 callbacks suppressed -[3276838.471939] print_req_error: I/O error, dev loop1, sector 9494400 -[3276838.472171] print_req_error: I/O error, dev loop1, sector 9494616 -[3276838.472304] print_req_error: I/O error, dev loop1, sector 5300224 -[3276838.472437] print_req_error: I/O error, dev loop1, sector 5300232 -[3276838.740978] print_req_error: I/O error, dev loop1, sector 85888 -[3276838.741133] print_req_error: I/O error, dev loop1, sector 86000 -[3276838.741274] print_req_error: I/O error, dev loop1, sector 20480 -[3276838.741426] print_req_error: I/O error, dev loop1, sector 20488 -[3276838.906653] print_req_error: I/O error, dev loop1, sector 5300096 -[3276838.906795] print_req_error: I/O error, dev loop1, sector 5300208 -[3276899.295988] print_req_error: 54 callbacks suppressed -[3276899.295989] print_req_error: I/O error, dev loop1, sector 9494400 -[3276899.296131] print_req_error: I/O error, dev loop1, sector 9494616 -[3276899.296186] print_req_error: I/O error, dev loop1, sector 5300224 -[3276899.296273] print_req_error: I/O error, dev loop1, sector 5300232 -[3276899.329767] print_req_error: I/O error, dev loop1, sector 85888 -[3276899.329935] print_req_error: I/O error, dev loop1, sector 86000 -[3276899.330056] print_req_error: I/O error, dev loop1, sector 20480 -[3276899.330176] print_req_error: I/O error, dev loop1, sector 20488 -[3276899.373966] print_req_error: I/O error, dev loop1, sector 5300096 -[3276899.374116] print_req_error: I/O error, dev loop1, sector 5300208 -[3298435.022426] print_req_error: 54 callbacks suppressed -[3298435.022428] print_req_error: I/O error, dev loop1, sector 9494400 -[3298435.022607] print_req_error: I/O error, dev loop1, sector 9494616 -[3298435.022667] print_req_error: I/O error, dev loop1, sector 5300224 -[3298435.022696] print_req_error: I/O error, dev loop1, sector 5300232 -[3298435.318796] print_req_error: I/O error, dev loop1, sector 85888 -[3298435.318917] print_req_error: I/O error, dev loop1, sector 86000 -[3298435.319035] print_req_error: I/O error, dev loop1, sector 20480 -[3298435.319149] print_req_error: I/O error, dev loop1, sector 20488 -[3298435.535494] print_req_error: I/O error, dev loop1, sector 5300096 -[3298435.535815] print_req_error: I/O error, dev loop1, sector 5300208 -[3298491.816365] print_req_error: 54 callbacks suppressed -[3298491.816367] print_req_error: I/O error, dev loop1, sector 9494400 -[3298491.816450] print_req_error: I/O error, dev loop1, sector 9494616 -[3298491.816483] print_req_error: I/O error, dev loop1, sector 5300224 -[3298491.816550] print_req_error: I/O error, dev loop1, sector 5300232 -[3298491.916821] print_req_error: I/O error, dev loop1, sector 85888 -[3298491.916964] print_req_error: I/O error, dev loop1, sector 86000 -[3298491.917099] print_req_error: I/O error, dev loop1, sector 20480 -[3298491.917247] print_req_error: I/O error, dev loop1, sector 20488 -[3298491.936057] print_req_error: I/O error, dev loop1, sector 5300096 -[3298491.936199] print_req_error: I/O error, dev loop1, sector 5300208 -[3320038.084433] print_req_error: 54 callbacks suppressed -[3320038.084435] print_req_error: I/O error, dev loop1, sector 9494400 -[3320038.084655] print_req_error: I/O error, dev loop1, sector 9494616 -[3320038.084722] print_req_error: I/O error, dev loop1, sector 5300224 -[3320038.084869] print_req_error: I/O error, dev loop1, sector 5300232 -[3320038.211777] print_req_error: I/O error, dev loop1, sector 85888 -[3320038.211900] print_req_error: I/O error, dev loop1, sector 86000 -[3320038.212037] print_req_error: I/O error, dev loop1, sector 20480 -[3320038.212190] print_req_error: I/O error, dev loop1, sector 20488 -[3320038.314908] print_req_error: I/O error, dev loop1, sector 5300096 -[3320038.315029] print_req_error: I/O error, dev loop1, sector 5300208 -[3320096.933509] print_req_error: 54 callbacks suppressed -[3320096.933511] print_req_error: I/O error, dev loop1, sector 9494400 -[3320096.933668] print_req_error: I/O error, dev loop1, sector 9494616 -[3320096.933788] print_req_error: I/O error, dev loop1, sector 5300224 -[3320096.933900] print_req_error: I/O error, dev loop1, sector 5300232 -[3320096.935818] print_req_error: I/O error, dev loop1, sector 85888 -[3320096.935959] print_req_error: I/O error, dev loop1, sector 86000 -[3320096.936038] print_req_error: I/O error, dev loop1, sector 20480 -[3320096.936174] print_req_error: I/O error, dev loop1, sector 20488 -[3320096.937383] print_req_error: I/O error, dev loop1, sector 5300096 -[3320096.937483] print_req_error: I/O error, dev loop1, sector 5300208 -[3341636.090522] print_req_error: 54 callbacks suppressed -[3341636.090524] print_req_error: I/O error, dev loop1, sector 9494400 -[3341636.090771] print_req_error: I/O error, dev loop1, sector 9494616 -[3341636.090837] print_req_error: I/O error, dev loop1, sector 5300224 -[3341636.090868] print_req_error: I/O error, dev loop1, sector 5300232 -[3341636.133664] print_req_error: I/O error, dev loop1, sector 85888 -[3341636.133794] print_req_error: I/O error, dev loop1, sector 86000 -[3341636.133862] print_req_error: I/O error, dev loop1, sector 20480 -[3341636.133979] print_req_error: I/O error, dev loop1, sector 20488 -[3341636.177474] print_req_error: I/O error, dev loop1, sector 5300096 -[3341636.177627] print_req_error: I/O error, dev loop1, sector 5300208 -[3341691.579292] print_req_error: 54 callbacks suppressed -[3341691.579293] print_req_error: I/O error, dev loop1, sector 9494400 -[3341691.579438] print_req_error: I/O error, dev loop1, sector 9494616 -[3341691.579499] print_req_error: I/O error, dev loop1, sector 5300224 -[3341691.579583] print_req_error: I/O error, dev loop1, sector 5300232 -[3341691.632909] print_req_error: I/O error, dev loop1, sector 85888 -[3341691.633053] print_req_error: I/O error, dev loop1, sector 86000 -[3341691.633157] print_req_error: I/O error, dev loop1, sector 20480 -[3341691.633306] print_req_error: I/O error, dev loop1, sector 20488 -[3341691.643725] print_req_error: I/O error, dev loop1, sector 5300096 -[3341691.643874] print_req_error: I/O error, dev loop1, sector 5300208 -[3363235.730879] print_req_error: 54 callbacks suppressed -[3363235.730881] print_req_error: I/O error, dev loop1, sector 9494400 -[3363235.731116] print_req_error: I/O error, dev loop1, sector 9494616 -[3363235.731181] print_req_error: I/O error, dev loop1, sector 5300224 -[3363235.731312] print_req_error: I/O error, dev loop1, sector 5300232 -[3363235.788840] print_req_error: I/O error, dev loop1, sector 85888 -[3363235.788996] print_req_error: I/O error, dev loop1, sector 86000 -[3363235.789108] print_req_error: I/O error, dev loop1, sector 20480 -[3363235.789210] print_req_error: I/O error, dev loop1, sector 20488 -[3363235.799471] print_req_error: I/O error, dev loop1, sector 5300096 -[3363235.799626] print_req_error: I/O error, dev loop1, sector 5300208 -[3363293.446109] print_req_error: 54 callbacks suppressed -[3363293.446111] print_req_error: I/O error, dev loop1, sector 9494400 -[3363293.446236] print_req_error: I/O error, dev loop1, sector 9494616 -[3363293.446300] print_req_error: I/O error, dev loop1, sector 5300224 -[3363293.446425] print_req_error: I/O error, dev loop1, sector 5300232 -[3363293.488553] print_req_error: I/O error, dev loop1, sector 85888 -[3363293.488691] print_req_error: I/O error, dev loop1, sector 86000 -[3363293.488766] print_req_error: I/O error, dev loop1, sector 20480 -[3363293.488838] print_req_error: I/O error, dev loop1, sector 20488 -[3363293.499132] print_req_error: I/O error, dev loop1, sector 5300096 -[3363293.499278] print_req_error: I/O error, dev loop1, sector 5300208 -[3384836.693947] print_req_error: 54 callbacks suppressed -[3384836.693949] print_req_error: I/O error, dev loop1, sector 9494400 -[3384836.694167] print_req_error: I/O error, dev loop1, sector 9494616 -[3384836.694233] print_req_error: I/O error, dev loop1, sector 5300224 -[3384836.694262] print_req_error: I/O error, dev loop1, sector 5300232 -[3384836.732692] print_req_error: I/O error, dev loop1, sector 85888 -[3384836.732846] print_req_error: I/O error, dev loop1, sector 86000 -[3384836.732929] print_req_error: I/O error, dev loop1, sector 20480 -[3384836.733092] print_req_error: I/O error, dev loop1, sector 20488 -[3384836.776373] print_req_error: I/O error, dev loop1, sector 5300096 -[3384836.776519] print_req_error: I/O error, dev loop1, sector 5300208 -[3384895.482130] print_req_error: 54 callbacks suppressed -[3384895.482131] print_req_error: I/O error, dev loop1, sector 9494400 -[3384895.482228] print_req_error: I/O error, dev loop1, sector 9494616 -[3384895.482336] print_req_error: I/O error, dev loop1, sector 5300224 -[3384895.482425] print_req_error: I/O error, dev loop1, sector 5300232 -[3384895.543162] print_req_error: I/O error, dev loop1, sector 85888 -[3384895.543316] print_req_error: I/O error, dev loop1, sector 86000 -[3384895.543398] print_req_error: I/O error, dev loop1, sector 20480 -[3384895.543544] print_req_error: I/O error, dev loop1, sector 20488 -[3384895.574684] print_req_error: I/O error, dev loop1, sector 5300096 -[3384895.574822] print_req_error: I/O error, dev loop1, sector 5300208 -[3406435.132607] print_req_error: 54 callbacks suppressed -[3406435.132609] print_req_error: I/O error, dev loop1, sector 9494400 -[3406435.132828] print_req_error: I/O error, dev loop1, sector 9494616 -[3406435.132888] print_req_error: I/O error, dev loop1, sector 5300224 -[3406435.132979] print_req_error: I/O error, dev loop1, sector 5300232 -[3406435.180273] print_req_error: I/O error, dev loop1, sector 85888 -[3406435.180447] print_req_error: I/O error, dev loop1, sector 86000 -[3406435.180530] print_req_error: I/O error, dev loop1, sector 20480 -[3406435.180675] print_req_error: I/O error, dev loop1, sector 20488 -[3406435.190406] print_req_error: I/O error, dev loop1, sector 5300096 -[3406435.190556] print_req_error: I/O error, dev loop1, sector 5300208 -[3406492.282656] print_req_error: 54 callbacks suppressed -[3406492.282658] print_req_error: I/O error, dev loop1, sector 9494400 -[3406492.282815] print_req_error: I/O error, dev loop1, sector 9494616 -[3406492.282879] print_req_error: I/O error, dev loop1, sector 5300224 -[3406492.282972] print_req_error: I/O error, dev loop1, sector 5300232 -[3406492.295191] print_req_error: I/O error, dev loop1, sector 85888 -[3406492.295259] print_req_error: I/O error, dev loop1, sector 86000 -[3406492.295321] print_req_error: I/O error, dev loop1, sector 20480 -[3406492.295350] print_req_error: I/O error, dev loop1, sector 20488 -[3406492.323633] print_req_error: I/O error, dev loop1, sector 5300096 -[3406492.323788] print_req_error: I/O error, dev loop1, sector 5300208 -[3428039.855980] print_req_error: 54 callbacks suppressed -[3428039.855982] print_req_error: I/O error, dev loop1, sector 9494400 -[3428039.856205] print_req_error: I/O error, dev loop1, sector 9494616 -[3428039.856271] print_req_error: I/O error, dev loop1, sector 5300224 -[3428039.856415] print_req_error: I/O error, dev loop1, sector 5300232 -[3428039.901772] print_req_error: I/O error, dev loop1, sector 85888 -[3428039.901925] print_req_error: I/O error, dev loop1, sector 86000 -[3428039.902023] print_req_error: I/O error, dev loop1, sector 20480 -[3428039.902164] print_req_error: I/O error, dev loop1, sector 20488 -[3428039.912366] print_req_error: I/O error, dev loop1, sector 5300096 -[3428039.912488] print_req_error: I/O error, dev loop1, sector 5300208 -[3428098.758644] print_req_error: 54 callbacks suppressed -[3428098.758646] print_req_error: I/O error, dev loop1, sector 9494400 -[3428098.758791] print_req_error: I/O error, dev loop1, sector 9494616 -[3428098.758847] print_req_error: I/O error, dev loop1, sector 5300224 -[3428098.758935] print_req_error: I/O error, dev loop1, sector 5300232 -[3428098.783757] print_req_error: I/O error, dev loop1, sector 85888 -[3428098.783943] print_req_error: I/O error, dev loop1, sector 86000 -[3428098.784045] print_req_error: I/O error, dev loop1, sector 20480 -[3428098.784234] print_req_error: I/O error, dev loop1, sector 20488 -[3428098.789716] print_req_error: I/O error, dev loop1, sector 5300096 -[3428098.789834] print_req_error: I/O error, dev loop1, sector 5300208 -[3449636.264452] print_req_error: 54 callbacks suppressed -[3449636.264453] print_req_error: I/O error, dev loop1, sector 9494400 -[3449636.264702] print_req_error: I/O error, dev loop1, sector 9494616 -[3449636.264779] print_req_error: I/O error, dev loop1, sector 5300224 -[3449636.264912] print_req_error: I/O error, dev loop1, sector 5300232 -[3449636.313883] print_req_error: I/O error, dev loop1, sector 85888 -[3449636.314044] print_req_error: I/O error, dev loop1, sector 86000 -[3449636.314136] print_req_error: I/O error, dev loop1, sector 20480 -[3449636.314284] print_req_error: I/O error, dev loop1, sector 20488 -[3449636.324257] print_req_error: I/O error, dev loop1, sector 5300096 -[3449636.324418] print_req_error: I/O error, dev loop1, sector 5300208 -[3449696.828170] print_req_error: 54 callbacks suppressed -[3449696.828172] print_req_error: I/O error, dev loop1, sector 9494400 -[3449696.828299] print_req_error: I/O error, dev loop1, sector 9494616 -[3449696.828362] print_req_error: I/O error, dev loop1, sector 5300224 -[3449696.828486] print_req_error: I/O error, dev loop1, sector 5300232 -[3449696.851511] print_req_error: I/O error, dev loop1, sector 85888 -[3449696.851634] print_req_error: I/O error, dev loop1, sector 86000 -[3449696.851809] print_req_error: I/O error, dev loop1, sector 20480 -[3449696.851943] print_req_error: I/O error, dev loop1, sector 20488 -[3449696.856902] print_req_error: I/O error, dev loop1, sector 5300096 -[3449696.857046] print_req_error: I/O error, dev loop1, sector 5300208 -[3471234.099525] print_req_error: 54 callbacks suppressed -[3471234.099526] print_req_error: I/O error, dev loop1, sector 9494400 -[3471234.099700] print_req_error: I/O error, dev loop1, sector 9494616 -[3471234.099763] print_req_error: I/O error, dev loop1, sector 5300224 -[3471234.099793] print_req_error: I/O error, dev loop1, sector 5300232 -[3471234.146698] print_req_error: I/O error, dev loop1, sector 85888 -[3471234.146887] print_req_error: I/O error, dev loop1, sector 86000 -[3471234.146984] print_req_error: I/O error, dev loop1, sector 20480 -[3471234.147138] print_req_error: I/O error, dev loop1, sector 20488 -[3471234.157523] print_req_error: I/O error, dev loop1, sector 5300096 -[3471234.157703] print_req_error: I/O error, dev loop1, sector 5300208 -[3471290.557099] print_req_error: 54 callbacks suppressed -[3471290.557101] print_req_error: I/O error, dev loop1, sector 9494400 -[3471290.557213] print_req_error: I/O error, dev loop1, sector 9494616 -[3471290.557273] print_req_error: I/O error, dev loop1, sector 5300224 -[3471290.557374] print_req_error: I/O error, dev loop1, sector 5300232 -[3471290.629285] print_req_error: I/O error, dev loop1, sector 85888 -[3471290.629452] print_req_error: I/O error, dev loop1, sector 86000 -[3471290.629535] print_req_error: I/O error, dev loop1, sector 20480 -[3471290.629694] print_req_error: I/O error, dev loop1, sector 20488 -[3471290.634437] print_req_error: I/O error, dev loop1, sector 5300096 -[3471290.634595] print_req_error: I/O error, dev loop1, sector 5300208 -[3492832.593738] print_req_error: 54 callbacks suppressed -[3492832.593739] print_req_error: I/O error, dev loop1, sector 9494400 -[3492832.593940] print_req_error: I/O error, dev loop1, sector 9494616 -[3492832.594005] print_req_error: I/O error, dev loop1, sector 5300224 -[3492832.594106] print_req_error: I/O error, dev loop1, sector 5300232 -[3492832.663214] print_req_error: I/O error, dev loop1, sector 85888 -[3492832.663368] print_req_error: I/O error, dev loop1, sector 86000 -[3492832.663502] print_req_error: I/O error, dev loop1, sector 20480 -[3492832.663662] print_req_error: I/O error, dev loop1, sector 20488 -[3492832.673451] print_req_error: I/O error, dev loop1, sector 5300096 -[3492832.673599] print_req_error: I/O error, dev loop1, sector 5300208 -[3492892.414411] print_req_error: 54 callbacks suppressed -[3492892.414412] print_req_error: I/O error, dev loop1, sector 9494400 -[3492892.414482] print_req_error: I/O error, dev loop1, sector 9494616 -[3492892.414515] print_req_error: I/O error, dev loop1, sector 5300224 -[3492892.414556] print_req_error: I/O error, dev loop1, sector 5300232 -[3492892.484869] print_req_error: I/O error, dev loop1, sector 85888 -[3492892.485048] print_req_error: I/O error, dev loop1, sector 86000 -[3492892.485121] print_req_error: I/O error, dev loop1, sector 20480 -[3492892.485183] print_req_error: I/O error, dev loop1, sector 20488 -[3492892.495398] print_req_error: I/O error, dev loop1, sector 5300096 -[3492892.495543] print_req_error: I/O error, dev loop1, sector 5300208 -[3513970.222026] linhelmk unloading -[3513970.372701] linhelmk exit done -[3514270.531959] linhelmk loaded -[3514270.531960] This linhelmk was built with the IMA EXPERIMENT! -[3514270.558456] helm_ima_bridge_init() succeeded - IMA experiment running. -[3514270.559585] message queue initialized in 1024 pages of shared memory -[3514270.559797] cdev created: /dev/helm -[3514270.594885] probe is now in state 1 (was 0) -[3514270.600443] probe <__x64_sys_execve> is now in state 1 (was 0) -[3514270.605802] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3514270.611368] probe is now in state 1 (was 0) -[3514270.616777] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3514270.622401] probe is now in state 1 (was 0) -[3514270.628037] probe is now in state 1 (was 0) -[3514270.633676] probe is now in state 1 (was 0) -[3514270.639159] probe is now in state 1 (was 0) -[3514270.644901] probe is now in state 1 (was 0) -[3514270.644903] nf_hook 12 is now in state 1 (was 0) -[3514270.644904] nf_hook 13 is now in state 1 (was 0) -[3514270.644905] nf_hook 14 is now in state 1 (was 0) -[3514270.644906] nf_hook 15 is now in state 1 (was 0) -[3514270.644906] /dev/helm created; linhelm init done -[3514436.029562] print_req_error: 54 callbacks suppressed -[3514436.029563] print_req_error: I/O error, dev loop1, sector 9494400 -[3514436.029758] print_req_error: I/O error, dev loop1, sector 9494616 -[3514436.029821] print_req_error: I/O error, dev loop1, sector 5300224 -[3514436.029922] print_req_error: I/O error, dev loop1, sector 5300232 -[3514436.077270] print_req_error: I/O error, dev loop1, sector 85888 -[3514436.077416] print_req_error: I/O error, dev loop1, sector 86000 -[3514436.077506] print_req_error: I/O error, dev loop1, sector 20480 -[3514436.077650] print_req_error: I/O error, dev loop1, sector 20488 -[3514436.087779] print_req_error: I/O error, dev loop1, sector 5300096 -[3514436.087934] print_req_error: I/O error, dev loop1, sector 5300208 -[3514494.640068] print_req_error: 54 callbacks suppressed -[3514494.640069] print_req_error: I/O error, dev loop1, sector 9494400 -[3514494.640187] print_req_error: I/O error, dev loop1, sector 9494616 -[3514494.640249] print_req_error: I/O error, dev loop1, sector 5300224 -[3514494.640345] print_req_error: I/O error, dev loop1, sector 5300232 -[3514494.659407] print_req_error: I/O error, dev loop1, sector 85888 -[3514494.659525] print_req_error: I/O error, dev loop1, sector 86000 -[3514494.659658] print_req_error: I/O error, dev loop1, sector 20480 -[3514494.659787] print_req_error: I/O error, dev loop1, sector 20488 -[3514494.664686] print_req_error: I/O error, dev loop1, sector 5300096 -[3514494.664800] print_req_error: I/O error, dev loop1, sector 5300208 -[3536034.474176] print_req_error: 54 callbacks suppressed -[3536034.474178] print_req_error: I/O error, dev loop1, sector 9494400 -[3536034.474426] print_req_error: I/O error, dev loop1, sector 9494616 -[3536034.474484] print_req_error: I/O error, dev loop1, sector 5300224 -[3536034.474625] print_req_error: I/O error, dev loop1, sector 5300232 -[3536034.512857] print_req_error: I/O error, dev loop1, sector 85888 -[3536034.513017] print_req_error: I/O error, dev loop1, sector 86000 -[3536034.513105] print_req_error: I/O error, dev loop1, sector 20480 -[3536034.513250] print_req_error: I/O error, dev loop1, sector 20488 -[3536034.523547] print_req_error: I/O error, dev loop1, sector 5300096 -[3536034.523667] print_req_error: I/O error, dev loop1, sector 5300208 -[3536093.383893] print_req_error: 54 callbacks suppressed -[3536093.383894] print_req_error: I/O error, dev loop1, sector 9494400 -[3536093.384044] print_req_error: I/O error, dev loop1, sector 9494616 -[3536093.384108] print_req_error: I/O error, dev loop1, sector 5300224 -[3536093.384234] print_req_error: I/O error, dev loop1, sector 5300232 -[3536093.394824] print_req_error: I/O error, dev loop1, sector 85888 -[3536093.394896] print_req_error: I/O error, dev loop1, sector 86000 -[3536093.394929] print_req_error: I/O error, dev loop1, sector 20480 -[3536093.395050] print_req_error: I/O error, dev loop1, sector 20488 -[3536093.400440] print_req_error: I/O error, dev loop1, sector 5300096 -[3536093.400539] print_req_error: I/O error, dev loop1, sector 5300208 -[3557632.921211] print_req_error: 54 callbacks suppressed -[3557632.921213] print_req_error: I/O error, dev loop1, sector 9494400 -[3557632.921440] print_req_error: I/O error, dev loop1, sector 9494616 -[3557632.921503] print_req_error: I/O error, dev loop1, sector 5300224 -[3557632.921542] print_req_error: I/O error, dev loop1, sector 5300232 -[3557632.966902] print_req_error: I/O error, dev loop1, sector 85888 -[3557632.967029] print_req_error: I/O error, dev loop1, sector 86000 -[3557632.967207] print_req_error: I/O error, dev loop1, sector 20480 -[3557632.967365] print_req_error: I/O error, dev loop1, sector 20488 -[3557632.977118] print_req_error: I/O error, dev loop1, sector 5300096 -[3557632.977246] print_req_error: I/O error, dev loop1, sector 5300208 -[3557693.281736] print_req_error: 54 callbacks suppressed -[3557693.281738] print_req_error: I/O error, dev loop1, sector 9494400 -[3557693.281866] print_req_error: I/O error, dev loop1, sector 9494616 -[3557693.281943] print_req_error: I/O error, dev loop1, sector 5300224 -[3557693.282047] print_req_error: I/O error, dev loop1, sector 5300232 -[3557693.304203] print_req_error: I/O error, dev loop1, sector 85888 -[3557693.304339] print_req_error: I/O error, dev loop1, sector 86000 -[3557693.304624] print_req_error: I/O error, dev loop1, sector 20480 -[3557693.304748] print_req_error: I/O error, dev loop1, sector 20488 -[3557693.309956] print_req_error: I/O error, dev loop1, sector 5300096 -[3557693.310112] print_req_error: I/O error, dev loop1, sector 5300208 -[3579235.121495] print_req_error: 54 callbacks suppressed -[3579235.121497] print_req_error: I/O error, dev loop1, sector 9494400 -[3579235.121730] print_req_error: I/O error, dev loop1, sector 9494616 -[3579235.121795] print_req_error: I/O error, dev loop1, sector 5300224 -[3579235.121916] print_req_error: I/O error, dev loop1, sector 5300232 -[3579235.168119] print_req_error: I/O error, dev loop1, sector 85888 -[3579235.168270] print_req_error: I/O error, dev loop1, sector 86000 -[3579235.168401] print_req_error: I/O error, dev loop1, sector 20480 -[3579235.168513] print_req_error: I/O error, dev loop1, sector 20488 -[3579235.178392] print_req_error: I/O error, dev loop1, sector 5300096 -[3579235.178542] print_req_error: I/O error, dev loop1, sector 5300208 -[3579293.642549] print_req_error: 54 callbacks suppressed -[3579293.642550] print_req_error: I/O error, dev loop1, sector 9494400 -[3579293.642639] print_req_error: I/O error, dev loop1, sector 9494616 -[3579293.642708] print_req_error: I/O error, dev loop1, sector 5300224 -[3579293.642807] print_req_error: I/O error, dev loop1, sector 5300232 -[3579293.689796] print_req_error: I/O error, dev loop1, sector 85888 -[3579293.689905] print_req_error: I/O error, dev loop1, sector 86000 -[3579293.690027] print_req_error: I/O error, dev loop1, sector 20480 -[3579293.690114] print_req_error: I/O error, dev loop1, sector 20488 -[3579293.733610] print_req_error: I/O error, dev loop1, sector 5300096 -[3579293.733762] print_req_error: I/O error, dev loop1, sector 5300208 -[3600832.981532] print_req_error: 54 callbacks suppressed -[3600832.981534] print_req_error: I/O error, dev loop1, sector 9494400 -[3600832.981787] print_req_error: I/O error, dev loop1, sector 9494616 -[3600832.981859] print_req_error: I/O error, dev loop1, sector 5300224 -[3600832.981966] print_req_error: I/O error, dev loop1, sector 5300232 -[3600833.083414] print_req_error: I/O error, dev loop1, sector 85888 -[3600833.083566] print_req_error: I/O error, dev loop1, sector 86000 -[3600833.083714] print_req_error: I/O error, dev loop1, sector 20480 -[3600833.083815] print_req_error: I/O error, dev loop1, sector 20488 -[3600833.128503] print_req_error: I/O error, dev loop1, sector 5300096 -[3600833.128654] print_req_error: I/O error, dev loop1, sector 5300208 -[3600891.505895] print_req_error: 54 callbacks suppressed -[3600891.505896] print_req_error: I/O error, dev loop1, sector 9494400 -[3600891.506029] print_req_error: I/O error, dev loop1, sector 9494616 -[3600891.506102] print_req_error: I/O error, dev loop1, sector 5300224 -[3600891.506204] print_req_error: I/O error, dev loop1, sector 5300232 -[3600891.507979] print_req_error: I/O error, dev loop1, sector 85888 -[3600891.508089] print_req_error: I/O error, dev loop1, sector 86000 -[3600891.508191] print_req_error: I/O error, dev loop1, sector 20480 -[3600891.508353] print_req_error: I/O error, dev loop1, sector 20488 -[3600891.529160] print_req_error: I/O error, dev loop1, sector 5300096 -[3600891.529301] print_req_error: I/O error, dev loop1, sector 5300208 -[3622433.355127] print_req_error: 54 callbacks suppressed -[3622433.355129] print_req_error: I/O error, dev loop1, sector 9494400 -[3622433.355353] print_req_error: I/O error, dev loop1, sector 9494616 -[3622433.355416] print_req_error: I/O error, dev loop1, sector 5300224 -[3622433.355511] print_req_error: I/O error, dev loop1, sector 5300232 -[3622433.402877] print_req_error: I/O error, dev loop1, sector 85888 -[3622433.403069] print_req_error: I/O error, dev loop1, sector 86000 -[3622433.403217] print_req_error: I/O error, dev loop1, sector 20480 -[3622433.403305] print_req_error: I/O error, dev loop1, sector 20488 -[3622433.446888] print_req_error: I/O error, dev loop1, sector 5300096 -[3622433.447077] print_req_error: I/O error, dev loop1, sector 5300208 -[3622490.137640] print_req_error: 54 callbacks suppressed -[3622490.137642] print_req_error: I/O error, dev loop1, sector 9494400 -[3622490.137730] print_req_error: I/O error, dev loop1, sector 9494616 -[3622490.137792] print_req_error: I/O error, dev loop1, sector 5300224 -[3622490.137893] print_req_error: I/O error, dev loop1, sector 5300232 -[3622490.191787] print_req_error: I/O error, dev loop1, sector 85888 -[3622490.191944] print_req_error: I/O error, dev loop1, sector 86000 -[3622490.192032] print_req_error: I/O error, dev loop1, sector 20480 -[3622490.192184] print_req_error: I/O error, dev loop1, sector 20488 -[3622490.202024] print_req_error: I/O error, dev loop1, sector 5300096 -[3622490.202178] print_req_error: I/O error, dev loop1, sector 5300208 -[3644033.091601] print_req_error: 54 callbacks suppressed -[3644033.091602] print_req_error: I/O error, dev loop1, sector 9494400 -[3644033.091848] print_req_error: I/O error, dev loop1, sector 9494616 -[3644033.091913] print_req_error: I/O error, dev loop1, sector 5300224 -[3644033.092042] print_req_error: I/O error, dev loop1, sector 5300232 -[3644033.131541] print_req_error: I/O error, dev loop1, sector 85888 -[3644033.131696] print_req_error: I/O error, dev loop1, sector 86000 -[3644033.131789] print_req_error: I/O error, dev loop1, sector 20480 -[3644033.131940] print_req_error: I/O error, dev loop1, sector 20488 -[3644033.141820] print_req_error: I/O error, dev loop1, sector 5300096 -[3644033.141974] print_req_error: I/O error, dev loop1, sector 5300208 -[3644091.041431] print_req_error: 54 callbacks suppressed -[3644091.041432] print_req_error: I/O error, dev loop1, sector 9494400 -[3644091.041593] print_req_error: I/O error, dev loop1, sector 9494616 -[3644091.041669] print_req_error: I/O error, dev loop1, sector 5300224 -[3644091.041778] print_req_error: I/O error, dev loop1, sector 5300232 -[3644091.068820] print_req_error: I/O error, dev loop1, sector 85888 -[3644091.068987] print_req_error: I/O error, dev loop1, sector 86000 -[3644091.069068] print_req_error: I/O error, dev loop1, sector 20480 -[3644091.069137] print_req_error: I/O error, dev loop1, sector 20488 -[3644091.074682] print_req_error: I/O error, dev loop1, sector 5300096 -[3644091.074825] print_req_error: I/O error, dev loop1, sector 5300208 -[3665632.897935] print_req_error: 54 callbacks suppressed -[3665632.897936] print_req_error: I/O error, dev loop1, sector 9494400 -[3665632.898163] print_req_error: I/O error, dev loop1, sector 9494616 -[3665632.898230] print_req_error: I/O error, dev loop1, sector 5300224 -[3665632.898339] print_req_error: I/O error, dev loop1, sector 5300232 -[3665632.950709] print_req_error: I/O error, dev loop1, sector 85888 -[3665632.950857] print_req_error: I/O error, dev loop1, sector 86000 -[3665632.951006] print_req_error: I/O error, dev loop1, sector 20480 -[3665632.951148] print_req_error: I/O error, dev loop1, sector 20488 -[3665632.961268] print_req_error: I/O error, dev loop1, sector 5300096 -[3665632.961426] print_req_error: I/O error, dev loop1, sector 5300208 -[3665690.294882] print_req_error: 54 callbacks suppressed -[3665690.294884] print_req_error: I/O error, dev loop1, sector 9494400 -[3665690.294991] print_req_error: I/O error, dev loop1, sector 9494616 -[3665690.295047] print_req_error: I/O error, dev loop1, sector 5300224 -[3665690.295173] print_req_error: I/O error, dev loop1, sector 5300232 -[3665690.540402] print_req_error: I/O error, dev loop1, sector 85888 -[3665690.540544] print_req_error: I/O error, dev loop1, sector 86000 -[3665690.540630] print_req_error: I/O error, dev loop1, sector 20480 -[3665690.540771] print_req_error: I/O error, dev loop1, sector 20488 -[3665690.838535] print_req_error: I/O error, dev loop1, sector 5300096 -[3665690.838680] print_req_error: I/O error, dev loop1, sector 5300208 -[3687234.093014] print_req_error: 54 callbacks suppressed -[3687234.093016] print_req_error: I/O error, dev loop1, sector 9494400 -[3687234.093226] print_req_error: I/O error, dev loop1, sector 9494616 -[3687234.093295] print_req_error: I/O error, dev loop1, sector 5300224 -[3687234.093422] print_req_error: I/O error, dev loop1, sector 5300232 -[3687234.132722] print_req_error: I/O error, dev loop1, sector 85888 -[3687234.132891] print_req_error: I/O error, dev loop1, sector 86000 -[3687234.132986] print_req_error: I/O error, dev loop1, sector 20480 -[3687234.133143] print_req_error: I/O error, dev loop1, sector 20488 -[3687234.143013] print_req_error: I/O error, dev loop1, sector 5300096 -[3687234.143181] print_req_error: I/O error, dev loop1, sector 5300208 -[3687295.446239] print_req_error: 54 callbacks suppressed -[3687295.446240] print_req_error: I/O error, dev loop1, sector 9494400 -[3687295.446396] print_req_error: I/O error, dev loop1, sector 9494616 -[3687295.446460] print_req_error: I/O error, dev loop1, sector 5300224 -[3687295.446586] print_req_error: I/O error, dev loop1, sector 5300232 -[3687295.487592] print_req_error: I/O error, dev loop1, sector 85888 -[3687295.487751] print_req_error: I/O error, dev loop1, sector 86000 -[3687295.487839] print_req_error: I/O error, dev loop1, sector 20480 -[3687295.487989] print_req_error: I/O error, dev loop1, sector 20488 -[3687295.531375] print_req_error: I/O error, dev loop1, sector 5300096 -[3687295.531525] print_req_error: I/O error, dev loop1, sector 5300208 -[3708827.921260] print_req_error: 54 callbacks suppressed -[3708827.921262] print_req_error: I/O error, dev loop1, sector 9494400 -[3708827.921465] print_req_error: I/O error, dev loop1, sector 9494616 -[3708827.921531] print_req_error: I/O error, dev loop1, sector 5300224 -[3708827.921660] print_req_error: I/O error, dev loop1, sector 5300232 -[3708828.282852] print_req_error: I/O error, dev loop1, sector 85888 -[3708828.283014] print_req_error: I/O error, dev loop1, sector 86000 -[3708828.283095] print_req_error: I/O error, dev loop1, sector 20480 -[3708828.283239] print_req_error: I/O error, dev loop1, sector 20488 -[3708828.326843] print_req_error: I/O error, dev loop1, sector 5300096 -[3708828.327000] print_req_error: I/O error, dev loop1, sector 5300208 -[3708886.186873] print_req_error: 54 callbacks suppressed -[3708886.186874] print_req_error: I/O error, dev loop1, sector 9494400 -[3708886.186989] print_req_error: I/O error, dev loop1, sector 9494616 -[3708886.187052] print_req_error: I/O error, dev loop1, sector 5300224 -[3708886.187176] print_req_error: I/O error, dev loop1, sector 5300232 -[3708886.211531] print_req_error: I/O error, dev loop1, sector 85888 -[3708886.211665] print_req_error: I/O error, dev loop1, sector 86000 -[3708886.211802] print_req_error: I/O error, dev loop1, sector 20480 -[3708886.211880] print_req_error: I/O error, dev loop1, sector 20488 -[3708886.247357] print_req_error: I/O error, dev loop1, sector 5300096 -[3708886.247504] print_req_error: I/O error, dev loop1, sector 5300208 -[3730428.594615] print_req_error: 54 callbacks suppressed -[3730428.594617] print_req_error: I/O error, dev loop1, sector 9494400 -[3730428.594808] print_req_error: I/O error, dev loop1, sector 9494616 -[3730428.594870] print_req_error: I/O error, dev loop1, sector 5300224 -[3730428.594900] print_req_error: I/O error, dev loop1, sector 5300232 -[3730428.633135] print_req_error: I/O error, dev loop1, sector 85888 -[3730428.633230] print_req_error: I/O error, dev loop1, sector 86000 -[3730428.633302] print_req_error: I/O error, dev loop1, sector 20480 -[3730428.633445] print_req_error: I/O error, dev loop1, sector 20488 -[3730428.643601] print_req_error: I/O error, dev loop1, sector 5300096 -[3730428.643752] print_req_error: I/O error, dev loop1, sector 5300208 -[3730487.381141] print_req_error: 54 callbacks suppressed -[3730487.381143] print_req_error: I/O error, dev loop1, sector 9494400 -[3730487.381268] print_req_error: I/O error, dev loop1, sector 9494616 -[3730487.381335] print_req_error: I/O error, dev loop1, sector 5300224 -[3730487.381433] print_req_error: I/O error, dev loop1, sector 5300232 -[3730487.392995] print_req_error: I/O error, dev loop1, sector 85888 -[3730487.393112] print_req_error: I/O error, dev loop1, sector 86000 -[3730487.393185] print_req_error: I/O error, dev loop1, sector 20480 -[3730487.393320] print_req_error: I/O error, dev loop1, sector 20488 -[3730487.398683] print_req_error: I/O error, dev loop1, sector 5300096 -[3730487.398821] print_req_error: I/O error, dev loop1, sector 5300208 -[3752030.490479] print_req_error: 54 callbacks suppressed -[3752030.490481] print_req_error: I/O error, dev loop1, sector 9494400 -[3752030.490701] print_req_error: I/O error, dev loop1, sector 9494616 -[3752030.490762] print_req_error: I/O error, dev loop1, sector 5300224 -[3752030.490866] print_req_error: I/O error, dev loop1, sector 5300232 -[3752030.551580] print_req_error: I/O error, dev loop1, sector 85888 -[3752030.551699] print_req_error: I/O error, dev loop1, sector 86000 -[3752030.551855] print_req_error: I/O error, dev loop1, sector 20480 -[3752030.551969] print_req_error: I/O error, dev loop1, sector 20488 -[3752030.562144] print_req_error: I/O error, dev loop1, sector 5300096 -[3752030.562314] print_req_error: I/O error, dev loop1, sector 5300208 -[3752087.874041] print_req_error: 54 callbacks suppressed -[3752087.874042] print_req_error: I/O error, dev loop1, sector 9494400 -[3752087.874153] print_req_error: I/O error, dev loop1, sector 9494616 -[3752087.874211] print_req_error: I/O error, dev loop1, sector 5300224 -[3752087.874273] print_req_error: I/O error, dev loop1, sector 5300232 -[3752087.917649] print_req_error: I/O error, dev loop1, sector 85888 -[3752087.917797] print_req_error: I/O error, dev loop1, sector 86000 -[3752087.917912] print_req_error: I/O error, dev loop1, sector 20480 -[3752087.918070] print_req_error: I/O error, dev loop1, sector 20488 -[3752087.928001] print_req_error: I/O error, dev loop1, sector 5300096 -[3752087.928138] print_req_error: I/O error, dev loop1, sector 5300208 -[3773631.568600] print_req_error: 54 callbacks suppressed -[3773631.568601] print_req_error: I/O error, dev loop1, sector 9494400 -[3773631.568855] print_req_error: I/O error, dev loop1, sector 9494616 -[3773631.569006] print_req_error: I/O error, dev loop1, sector 5300224 -[3773631.569137] print_req_error: I/O error, dev loop1, sector 5300232 -[3773631.615282] print_req_error: I/O error, dev loop1, sector 85888 -[3773631.615436] print_req_error: I/O error, dev loop1, sector 86000 -[3773631.615520] print_req_error: I/O error, dev loop1, sector 20480 -[3773631.615661] print_req_error: I/O error, dev loop1, sector 20488 -[3773631.625742] print_req_error: I/O error, dev loop1, sector 5300096 -[3773631.625895] print_req_error: I/O error, dev loop1, sector 5300208 -[3773688.292887] print_req_error: 54 callbacks suppressed -[3773688.292889] print_req_error: I/O error, dev loop1, sector 9494400 -[3773688.292993] print_req_error: I/O error, dev loop1, sector 9494616 -[3773688.293106] print_req_error: I/O error, dev loop1, sector 5300224 -[3773688.293215] print_req_error: I/O error, dev loop1, sector 5300232 -[3773688.308292] print_req_error: I/O error, dev loop1, sector 85888 -[3773688.308421] print_req_error: I/O error, dev loop1, sector 86000 -[3773688.308468] print_req_error: I/O error, dev loop1, sector 20480 -[3773688.308615] print_req_error: I/O error, dev loop1, sector 20488 -[3773688.313880] print_req_error: I/O error, dev loop1, sector 5300096 -[3773688.314006] print_req_error: I/O error, dev loop1, sector 5300208 -[3785021.622611] usb 4-1.1: USB disconnect, device number 16 -[3785021.622617] usb 4-1.1.4: USB disconnect, device number 17 -[3785021.623398] usb 4-1.1.5: USB disconnect, device number 18 -[3785125.274899] usb 4-1.1: new high-speed USB device number 30 using ehci-pci -[3785125.383360] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785125.383366] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785125.383988] hub 4-1.1:1.0: USB hub found -[3785125.384144] hub 4-1.1:1.0: 7 ports detected -[3785125.670859] usb 4-1.1.4: new high-speed USB device number 31 using ehci-pci -[3785125.784391] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785125.784397] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.784400] usb 4-1.1.4: Product: servo:810-10010-02 -[3785125.784403] usb 4-1.1.4: Manufacturer: Google Inc -[3785125.784406] usb 4-1.1.4: SerialNumber: 641220-00008 -[3785125.870812] usb 4-1.1.5: new high-speed USB device number 32 using ehci-pci -[3785125.992537] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785125.992543] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.992546] usb 4-1.1.5: Product: servo:810-10010-02 -[3785125.992549] usb 4-1.1.5: Manufacturer: Google Inc -[3785125.992552] usb 4-1.1.5: SerialNumber: 641220-00008 -[3785170.870778] usb 4-1.1: USB disconnect, device number 30 -[3785170.870784] usb 4-1.1.4: USB disconnect, device number 31 -[3785170.871509] usb 4-1.1.5: USB disconnect, device number 32 -[3785399.444401] usb 4-1.1: new high-speed USB device number 33 using ehci-pci -[3785399.552969] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785399.552975] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785399.553492] hub 4-1.1:1.0: USB hub found -[3785399.553713] hub 4-1.1:1.0: 7 ports detected -[3785399.844386] usb 4-1.1.4: new high-speed USB device number 34 using ehci-pci -[3785399.961854] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785399.961859] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785399.961863] usb 4-1.1.4: Product: servo:810-10010-02 -[3785399.961866] usb 4-1.1.4: Manufacturer: Google Inc -[3785399.961869] usb 4-1.1.4: SerialNumber: 686203-00054 -[3785400.052405] usb 4-1.1.5: new high-speed USB device number 35 using ehci-pci -[3785400.169888] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785400.169894] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785400.169897] usb 4-1.1.5: Product: servo:810-10010-02 -[3785400.169900] usb 4-1.1.5: Manufacturer: Google Inc -[3785400.169903] usb 4-1.1.5: SerialNumber: 686203-00054 -[3789440.536209] usb 2-2.3: USB disconnect, device number 6 -[3789487.590458] usb 2-2.3: new low-speed USB device number 7 using xhci_hcd -[3789487.699433] usb 2-2.3: New USB device found, idVendor=1a7c, idProduct=0195, bcdDevice= 3.10 -[3789487.699439] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3789487.699442] usb 2-2.3: Product: Evoluent VerticalMouse C -[3789487.699445] usb 2-2.3: Manufacturer: SONiX -[3789487.715234] input: SONiX Evoluent VerticalMouse C as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:1A7C:0195.0006/input/input18 -[3789487.715781] hid-generic 0003:1A7C:0195.0006: input,hidraw3: USB HID v1.00 Mouse [SONiX Evoluent VerticalMouse C] on usb-0000:08:00.0-2.3/input0 -[3795231.326042] print_req_error: 54 callbacks suppressed -[3795231.326044] print_req_error: I/O error, dev loop1, sector 9494400 -[3795231.326309] print_req_error: I/O error, dev loop1, sector 9494616 -[3795231.326377] print_req_error: I/O error, dev loop1, sector 5300224 -[3795231.326484] print_req_error: I/O error, dev loop1, sector 5300232 -[3795231.390354] print_req_error: I/O error, dev loop1, sector 85888 -[3795231.390514] print_req_error: I/O error, dev loop1, sector 86000 -[3795231.390611] print_req_error: I/O error, dev loop1, sector 20480 -[3795231.390755] print_req_error: I/O error, dev loop1, sector 20488 -[3795231.400824] print_req_error: I/O error, dev loop1, sector 5300096 -[3795231.400980] print_req_error: I/O error, dev loop1, sector 5300208 -[3795290.731079] print_req_error: 54 callbacks suppressed -[3795290.731081] print_req_error: I/O error, dev loop1, sector 9494400 -[3795290.731158] print_req_error: I/O error, dev loop1, sector 9494616 -[3795290.731226] print_req_error: I/O error, dev loop1, sector 5300224 -[3795290.731253] print_req_error: I/O error, dev loop1, sector 5300232 -[3795290.767720] print_req_error: I/O error, dev loop1, sector 85888 -[3795290.767890] print_req_error: I/O error, dev loop1, sector 86000 -[3795290.767997] print_req_error: I/O error, dev loop1, sector 20480 -[3795290.768132] print_req_error: I/O error, dev loop1, sector 20488 -[3795290.811384] print_req_error: I/O error, dev loop1, sector 5300096 -[3795290.811520] print_req_error: I/O error, dev loop1, sector 5300208 -[3798561.211851] usb 4-1.2.4: USB disconnect, device number 28 -[3798561.311634] keyspan_1 ttyUSB1: Keyspan 1 port adapter converter now disconnected from ttyUSB1 -[3798561.311656] keyspan 4-1.2.4:1.0: device disconnected -[3798561.903281] ftdi_sio ttyUSB0: usb_serial_generic_read_bulk_callback - urb stopped: -32 -[3798561.903676] ftdi_sio ttyUSB0: usb_serial_generic_read_bulk_callback - urb stopped: -32 -[3798561.979859] usb 4-1.2.3: USB disconnect, device number 26 -[3798561.979997] ftdi_sio ttyUSB0: error from flowcontrol urb -[3798561.980234] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0 -[3798561.980261] ftdi_sio 4-1.2.3:1.0: device disconnected -[3798581.658982] usb 4-1.2.4: new full-speed USB device number 36 using ehci-pci -[3798581.785700] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[3798581.785705] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3798581.785709] usb 4-1.2.4: Product: Keyspan USA-19H -[3798581.785712] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[3798581.786568] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[3798581.786807] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB0 -[3798762.939619] usb 4-1.2.4: USB disconnect, device number 36 -[3798762.940099] keyspan_1 ttyUSB0: Keyspan 1 port adapter converter now disconnected from ttyUSB0 -[3798762.940143] keyspan 4-1.2.4:1.0: device disconnected -[3798764.185272] usb 4-1.2.3: new full-speed USB device number 37 using ehci-pci -[3798764.300743] usb 4-1.2.3: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 -[3798764.300749] usb 4-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3798764.300753] usb 4-1.2.3: Product: FT232R USB UART -[3798764.300755] usb 4-1.2.3: Manufacturer: FTDI -[3798764.300758] usb 4-1.2.3: SerialNumber: AL009FRA -[3798764.303690] ftdi_sio 4-1.2.3:1.0: FTDI USB Serial Device converter detected -[3798764.303754] usb 4-1.2.3: Detected FT232RL -[3798764.304393] usb 4-1.2.3: FTDI USB Serial Device converter now attached to ttyUSB0 -[3798772.389176] usb 4-1.2.4: new full-speed USB device number 38 using ehci-pci -[3798772.516419] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[3798772.516425] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3798772.516428] usb 4-1.2.4: Product: Keyspan USA-19H -[3798772.516431] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[3798772.517304] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[3798772.517613] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB1 -[3816832.288203] print_req_error: 54 callbacks suppressed -[3816832.288205] print_req_error: I/O error, dev loop1, sector 9494400 -[3816832.288461] print_req_error: I/O error, dev loop1, sector 9494616 -[3816832.288536] print_req_error: I/O error, dev loop1, sector 5300224 -[3816832.288645] print_req_error: I/O error, dev loop1, sector 5300232 -[3816832.328611] print_req_error: I/O error, dev loop1, sector 85888 -[3816832.328750] print_req_error: I/O error, dev loop1, sector 86000 -[3816832.328830] print_req_error: I/O error, dev loop1, sector 20480 -[3816832.328985] print_req_error: I/O error, dev loop1, sector 20488 -[3816832.360081] print_req_error: I/O error, dev loop1, sector 5300096 -[3816832.360233] print_req_error: I/O error, dev loop1, sector 5300208 -[3816887.663920] print_req_error: 54 callbacks suppressed -[3816887.663921] print_req_error: I/O error, dev loop1, sector 9494400 -[3816887.664007] print_req_error: I/O error, dev loop1, sector 9494616 -[3816887.664072] print_req_error: I/O error, dev loop1, sector 5300224 -[3816887.664106] print_req_error: I/O error, dev loop1, sector 5300232 -[3816887.666047] print_req_error: I/O error, dev loop1, sector 85888 -[3816887.666143] print_req_error: I/O error, dev loop1, sector 86000 -[3816887.666169] print_req_error: I/O error, dev loop1, sector 20480 -[3816887.666264] print_req_error: I/O error, dev loop1, sector 20488 -[3816887.693887] print_req_error: I/O error, dev loop1, sector 5300096 -[3816887.693978] print_req_error: I/O error, dev loop1, sector 5300208 -[3830899.575452] linhelmk unloading -[3830899.725878] linhelmk exit done -[3831200.052864] linhelmk loaded -[3831200.052867] This linhelmk was built with the IMA EXPERIMENT! -[3831200.081062] helm_ima_bridge_init() succeeded - IMA experiment running. -[3831200.082365] message queue initialized in 1024 pages of shared memory -[3831200.082586] cdev created: /dev/helm -[3831200.118355] probe is now in state 1 (was 0) -[3831200.126303] probe <__x64_sys_execve> is now in state 1 (was 0) -[3831200.132177] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3831200.138773] probe is now in state 1 (was 0) -[3831200.144717] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3831200.150714] probe is now in state 1 (was 0) -[3831200.157035] probe is now in state 1 (was 0) -[3831200.163040] probe is now in state 1 (was 0) -[3831200.168614] probe is now in state 1 (was 0) -[3831200.174423] probe is now in state 1 (was 0) -[3831200.174424] nf_hook 12 is now in state 1 (was 0) -[3831200.174425] nf_hook 13 is now in state 1 (was 0) -[3831200.174426] nf_hook 14 is now in state 1 (was 0) -[3831200.174426] nf_hook 15 is now in state 1 (was 0) -[3831200.174427] /dev/helm created; linhelm init done -[3838433.303659] print_req_error: 54 callbacks suppressed -[3838433.303661] print_req_error: I/O error, dev loop1, sector 9494400 -[3838433.303880] print_req_error: I/O error, dev loop1, sector 9494616 -[3838433.303960] print_req_error: I/O error, dev loop1, sector 5300224 -[3838433.304057] print_req_error: I/O error, dev loop1, sector 5300232 -[3838433.370876] print_req_error: I/O error, dev loop1, sector 85888 -[3838433.371027] print_req_error: I/O error, dev loop1, sector 86000 -[3838433.371133] print_req_error: I/O error, dev loop1, sector 20480 -[3838433.371283] print_req_error: I/O error, dev loop1, sector 20488 -[3838433.381469] print_req_error: I/O error, dev loop1, sector 5300096 -[3838433.381620] print_req_error: I/O error, dev loop1, sector 5300208 -[3838490.588118] print_req_error: 54 callbacks suppressed -[3838490.588120] print_req_error: I/O error, dev loop1, sector 9494400 -[3838490.588229] print_req_error: I/O error, dev loop1, sector 9494616 -[3838490.588291] print_req_error: I/O error, dev loop1, sector 5300224 -[3838490.588412] print_req_error: I/O error, dev loop1, sector 5300232 -[3838490.597471] print_req_error: I/O error, dev loop1, sector 85888 -[3838490.597571] print_req_error: I/O error, dev loop1, sector 86000 -[3838490.597670] print_req_error: I/O error, dev loop1, sector 20480 -[3838490.597769] print_req_error: I/O error, dev loop1, sector 20488 -[3838490.603281] print_req_error: I/O error, dev loop1, sector 5300096 -[3838490.603404] print_req_error: I/O error, dev loop1, sector 5300208 -[3860024.643570] print_req_error: 54 callbacks suppressed -[3860024.643571] print_req_error: I/O error, dev loop1, sector 9494400 -[3860024.643786] print_req_error: I/O error, dev loop1, sector 9494616 -[3860024.643845] print_req_error: I/O error, dev loop1, sector 5300224 -[3860024.643973] print_req_error: I/O error, dev loop1, sector 5300232 -[3860024.665871] print_req_error: I/O error, dev loop1, sector 85888 -[3860024.666001] print_req_error: I/O error, dev loop1, sector 86000 -[3860024.666153] print_req_error: I/O error, dev loop1, sector 20480 -[3860024.666284] print_req_error: I/O error, dev loop1, sector 20488 -[3860024.671412] print_req_error: I/O error, dev loop1, sector 5300096 -[3860024.671573] print_req_error: I/O error, dev loop1, sector 5300208 -[3860079.653261] print_req_error: 54 callbacks suppressed -[3860079.653263] print_req_error: I/O error, dev loop1, sector 9494400 -[3860079.653410] print_req_error: I/O error, dev loop1, sector 9494616 -[3860079.653469] print_req_error: I/O error, dev loop1, sector 5300224 -[3860079.653558] print_req_error: I/O error, dev loop1, sector 5300232 -[3860079.676414] print_req_error: I/O error, dev loop1, sector 85888 -[3860079.676510] print_req_error: I/O error, dev loop1, sector 86000 -[3860079.676583] print_req_error: I/O error, dev loop1, sector 20480 -[3860079.676652] print_req_error: I/O error, dev loop1, sector 20488 -[3860079.682166] print_req_error: I/O error, dev loop1, sector 5300096 -[3860079.682314] print_req_error: I/O error, dev loop1, sector 5300208 -[3881629.733227] print_req_error: 54 callbacks suppressed -[3881629.733229] print_req_error: I/O error, dev loop1, sector 9494400 -[3881629.733501] print_req_error: I/O error, dev loop1, sector 9494616 -[3881629.733577] print_req_error: I/O error, dev loop1, sector 5300224 -[3881629.733699] print_req_error: I/O error, dev loop1, sector 5300232 -[3881629.836389] print_req_error: I/O error, dev loop1, sector 85888 -[3881629.836539] print_req_error: I/O error, dev loop1, sector 86000 -[3881629.836690] print_req_error: I/O error, dev loop1, sector 20480 -[3881629.836836] print_req_error: I/O error, dev loop1, sector 20488 -[3881629.919656] print_req_error: I/O error, dev loop1, sector 5300096 -[3881629.919803] print_req_error: I/O error, dev loop1, sector 5300208 -[3881685.511548] print_req_error: 54 callbacks suppressed -[3881685.511550] print_req_error: I/O error, dev loop1, sector 9494400 -[3881685.511640] print_req_error: I/O error, dev loop1, sector 9494616 -[3881685.511687] print_req_error: I/O error, dev loop1, sector 5300224 -[3881685.511808] print_req_error: I/O error, dev loop1, sector 5300232 -[3881685.571459] print_req_error: I/O error, dev loop1, sector 85888 -[3881685.571605] print_req_error: I/O error, dev loop1, sector 86000 -[3881685.571682] print_req_error: I/O error, dev loop1, sector 20480 -[3881685.571839] print_req_error: I/O error, dev loop1, sector 20488 -[3881685.582186] print_req_error: I/O error, dev loop1, sector 5300096 -[3881685.582327] print_req_error: I/O error, dev loop1, sector 5300208 -[3883084.755555] usb 4-1.3: USB disconnect, device number 29 -[3883089.337157] usb 4-1.3: new high-speed USB device number 39 using ehci-pci -[3883089.449895] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[3883089.449901] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[3883089.451146] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[3883089.451151] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3883089.451154] usb 4-1.3: Product: EM100PRO -[3883089.451157] usb 4-1.3: Manufacturer: DediProg -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[2090413.478133] print_req_error: 54 callbacks suppressed -[2090413.478135] print_req_error: I/O error, dev loop1, sector 9494400 -[2090413.478373] print_req_error: I/O error, dev loop1, sector 9494616 -[2090413.478442] print_req_error: I/O error, dev loop1, sector 5300224 -[2090413.478494] print_req_error: I/O error, dev loop1, sector 5300232 -[2090413.526050] print_req_error: I/O error, dev loop1, sector 85888 -[2090413.526200] print_req_error: I/O error, dev loop1, sector 86000 -[2090413.526349] print_req_error: I/O error, dev loop1, sector 20480 -[2090413.526499] print_req_error: I/O error, dev loop1, sector 20488 -[2090413.536462] print_req_error: I/O error, dev loop1, sector 5300096 -[2090413.536624] print_req_error: I/O error, dev loop1, sector 5300208 -[2090471.511176] print_req_error: 54 callbacks suppressed -[2090471.511178] print_req_error: I/O error, dev loop1, sector 9494400 -[2090471.511308] print_req_error: I/O error, dev loop1, sector 9494616 -[2090471.511372] print_req_error: I/O error, dev loop1, sector 5300224 -[2090471.511433] print_req_error: I/O error, dev loop1, sector 5300232 -[2090471.570180] print_req_error: I/O error, dev loop1, sector 85888 -[2090471.570306] print_req_error: I/O error, dev loop1, sector 86000 -[2090471.570375] print_req_error: I/O error, dev loop1, sector 20480 -[2090471.570519] print_req_error: I/O error, dev loop1, sector 20488 -[2090471.580574] print_req_error: I/O error, dev loop1, sector 5300096 -[2090471.580714] print_req_error: I/O error, dev loop1, sector 5300208 -[2112010.827903] print_req_error: 54 callbacks suppressed -[2112010.827905] print_req_error: I/O error, dev loop1, sector 9494400 -[2112010.828155] print_req_error: I/O error, dev loop1, sector 9494616 -[2112010.828225] print_req_error: I/O error, dev loop1, sector 5300224 -[2112010.828288] print_req_error: I/O error, dev loop1, sector 5300232 -[2112011.119197] print_req_error: I/O error, dev loop1, sector 85888 -[2112011.119368] print_req_error: I/O error, dev loop1, sector 86000 -[2112011.119454] print_req_error: I/O error, dev loop1, sector 20480 -[2112011.119604] print_req_error: I/O error, dev loop1, sector 20488 -[2112011.163172] print_req_error: I/O error, dev loop1, sector 5300096 -[2112011.163329] print_req_error: I/O error, dev loop1, sector 5300208 -[2112069.211288] print_req_error: 54 callbacks suppressed -[2112069.211289] print_req_error: I/O error, dev loop1, sector 9494400 -[2112069.211367] print_req_error: I/O error, dev loop1, sector 9494616 -[2112069.211400] print_req_error: I/O error, dev loop1, sector 5300224 -[2112069.211426] print_req_error: I/O error, dev loop1, sector 5300232 -[2112069.262885] print_req_error: I/O error, dev loop1, sector 85888 -[2112069.263034] print_req_error: I/O error, dev loop1, sector 86000 -[2112069.263180] print_req_error: I/O error, dev loop1, sector 20480 -[2112069.263330] print_req_error: I/O error, dev loop1, sector 20488 -[2112069.306796] print_req_error: I/O error, dev loop1, sector 5300096 -[2112069.306935] print_req_error: I/O error, dev loop1, sector 5300208 -[2133613.290508] print_req_error: 54 callbacks suppressed -[2133613.290510] print_req_error: I/O error, dev loop1, sector 9494400 -[2133613.290642] print_req_error: I/O error, dev loop1, sector 9494616 -[2133613.290676] print_req_error: I/O error, dev loop1, sector 5300224 -[2133613.290747] print_req_error: I/O error, dev loop1, sector 5300232 -[2133613.327409] print_req_error: I/O error, dev loop1, sector 85888 -[2133613.327483] print_req_error: I/O error, dev loop1, sector 86000 -[2133613.327532] print_req_error: I/O error, dev loop1, sector 20480 -[2133613.327600] print_req_error: I/O error, dev loop1, sector 20488 -[2133613.371295] print_req_error: I/O error, dev loop1, sector 5300096 -[2133613.371367] print_req_error: I/O error, dev loop1, sector 5300208 -[2133673.078115] print_req_error: 54 callbacks suppressed -[2133673.078117] print_req_error: I/O error, dev loop1, sector 9494400 -[2133673.078223] print_req_error: I/O error, dev loop1, sector 9494616 -[2133673.078280] print_req_error: I/O error, dev loop1, sector 5300224 -[2133673.078368] print_req_error: I/O error, dev loop1, sector 5300232 -[2133673.138524] print_req_error: I/O error, dev loop1, sector 85888 -[2133673.138692] print_req_error: I/O error, dev loop1, sector 86000 -[2133673.138846] print_req_error: I/O error, dev loop1, sector 20480 -[2133673.138999] print_req_error: I/O error, dev loop1, sector 20488 -[2133673.148904] print_req_error: I/O error, dev loop1, sector 5300096 -[2133673.149054] print_req_error: I/O error, dev loop1, sector 5300208 -[2155214.716211] print_req_error: 54 callbacks suppressed -[2155214.716213] print_req_error: I/O error, dev loop1, sector 9494400 -[2155214.716403] print_req_error: I/O error, dev loop1, sector 9494616 -[2155214.716465] print_req_error: I/O error, dev loop1, sector 5300224 -[2155214.716592] print_req_error: I/O error, dev loop1, sector 5300232 -[2155214.762579] print_req_error: I/O error, dev loop1, sector 85888 -[2155214.762732] print_req_error: I/O error, dev loop1, sector 86000 -[2155214.762819] print_req_error: I/O error, dev loop1, sector 20480 -[2155214.762915] print_req_error: I/O error, dev loop1, sector 20488 -[2155214.773346] print_req_error: I/O error, dev loop1, sector 5300096 -[2155214.773506] print_req_error: I/O error, dev loop1, sector 5300208 -[2155274.789779] print_req_error: 54 callbacks suppressed -[2155274.789781] print_req_error: I/O error, dev loop1, sector 9494400 -[2155274.789932] print_req_error: I/O error, dev loop1, sector 9494616 -[2155274.789990] print_req_error: I/O error, dev loop1, sector 5300224 -[2155274.790081] print_req_error: I/O error, dev loop1, sector 5300232 -[2155274.840226] print_req_error: I/O error, dev loop1, sector 85888 -[2155274.840384] print_req_error: I/O error, dev loop1, sector 86000 -[2155274.840474] print_req_error: I/O error, dev loop1, sector 20480 -[2155274.840615] print_req_error: I/O error, dev loop1, sector 20488 -[2155274.884080] print_req_error: I/O error, dev loop1, sector 5300096 -[2155274.884235] print_req_error: I/O error, dev loop1, sector 5300208 -[2176814.216805] print_req_error: 54 callbacks suppressed -[2176814.216807] print_req_error: I/O error, dev loop1, sector 9494400 -[2176814.217000] print_req_error: I/O error, dev loop1, sector 9494616 -[2176814.217072] print_req_error: I/O error, dev loop1, sector 5300224 -[2176814.217118] print_req_error: I/O error, dev loop1, sector 5300232 -[2176814.262798] print_req_error: I/O error, dev loop1, sector 85888 -[2176814.262945] print_req_error: I/O error, dev loop1, sector 86000 -[2176814.263087] print_req_error: I/O error, dev loop1, sector 20480 -[2176814.263175] print_req_error: I/O error, dev loop1, sector 20488 -[2176814.273059] print_req_error: I/O error, dev loop1, sector 5300096 -[2176814.273181] print_req_error: I/O error, dev loop1, sector 5300208 -[2176871.285406] print_req_error: 54 callbacks suppressed -[2176871.285407] print_req_error: I/O error, dev loop1, sector 9494400 -[2176871.285490] print_req_error: I/O error, dev loop1, sector 9494616 -[2176871.285523] print_req_error: I/O error, dev loop1, sector 5300224 -[2176871.285589] print_req_error: I/O error, dev loop1, sector 5300232 -[2176871.350776] print_req_error: I/O error, dev loop1, sector 85888 -[2176871.350863] print_req_error: I/O error, dev loop1, sector 86000 -[2176871.350930] print_req_error: I/O error, dev loop1, sector 20480 -[2176871.350997] print_req_error: I/O error, dev loop1, sector 20488 -[2176871.394953] print_req_error: I/O error, dev loop1, sector 5300096 -[2176871.395062] print_req_error: I/O error, dev loop1, sector 5300208 -[2198410.216834] print_req_error: 54 callbacks suppressed -[2198410.216836] print_req_error: I/O error, dev loop1, sector 9494400 -[2198410.217043] print_req_error: I/O error, dev loop1, sector 9494616 -[2198410.217109] print_req_error: I/O error, dev loop1, sector 5300224 -[2198410.217221] print_req_error: I/O error, dev loop1, sector 5300232 -[2198410.265514] print_req_error: I/O error, dev loop1, sector 85888 -[2198410.265662] print_req_error: I/O error, dev loop1, sector 86000 -[2198410.265803] print_req_error: I/O error, dev loop1, sector 20480 -[2198410.265962] print_req_error: I/O error, dev loop1, sector 20488 -[2198410.275651] print_req_error: I/O error, dev loop1, sector 5300096 -[2198410.275805] print_req_error: I/O error, dev loop1, sector 5300208 -[2198467.955698] print_req_error: 54 callbacks suppressed -[2198467.955700] print_req_error: I/O error, dev loop1, sector 9494400 -[2198467.955818] print_req_error: I/O error, dev loop1, sector 9494616 -[2198467.955881] print_req_error: I/O error, dev loop1, sector 5300224 -[2198467.956008] print_req_error: I/O error, dev loop1, sector 5300232 -[2198467.998405] print_req_error: I/O error, dev loop1, sector 85888 -[2198467.998555] print_req_error: I/O error, dev loop1, sector 86000 -[2198467.998681] print_req_error: I/O error, dev loop1, sector 20480 -[2198467.998824] print_req_error: I/O error, dev loop1, sector 20488 -[2198468.008641] print_req_error: I/O error, dev loop1, sector 5300096 -[2198468.008772] print_req_error: I/O error, dev loop1, sector 5300208 -[2220008.530143] print_req_error: 54 callbacks suppressed -[2220008.530145] print_req_error: I/O error, dev loop1, sector 9494400 -[2220008.530379] print_req_error: I/O error, dev loop1, sector 9494616 -[2220008.530446] print_req_error: I/O error, dev loop1, sector 5300224 -[2220008.530544] print_req_error: I/O error, dev loop1, sector 5300232 -[2220008.575136] print_req_error: I/O error, dev loop1, sector 85888 -[2220008.575302] print_req_error: I/O error, dev loop1, sector 86000 -[2220008.575382] print_req_error: I/O error, dev loop1, sector 20480 -[2220008.575538] print_req_error: I/O error, dev loop1, sector 20488 -[2220008.618923] print_req_error: I/O error, dev loop1, sector 5300096 -[2220008.619082] print_req_error: I/O error, dev loop1, sector 5300208 -[2220068.189294] print_req_error: 54 callbacks suppressed -[2220068.189296] print_req_error: I/O error, dev loop1, sector 9494400 -[2220068.189432] print_req_error: I/O error, dev loop1, sector 9494616 -[2220068.189501] print_req_error: I/O error, dev loop1, sector 5300224 -[2220068.189597] print_req_error: I/O error, dev loop1, sector 5300232 -[2220068.191523] print_req_error: I/O error, dev loop1, sector 85888 -[2220068.191614] print_req_error: I/O error, dev loop1, sector 86000 -[2220068.191712] print_req_error: I/O error, dev loop1, sector 20480 -[2220068.191792] print_req_error: I/O error, dev loop1, sector 20488 -[2220068.206998] print_req_error: I/O error, dev loop1, sector 5300096 -[2220068.207121] print_req_error: I/O error, dev loop1, sector 5300208 -[2241610.122690] print_req_error: 54 callbacks suppressed -[2241610.122691] print_req_error: I/O error, dev loop1, sector 9494400 -[2241610.122911] print_req_error: I/O error, dev loop1, sector 9494616 -[2241610.123023] print_req_error: I/O error, dev loop1, sector 5300224 -[2241610.123164] print_req_error: I/O error, dev loop1, sector 5300232 -[2241610.163946] print_req_error: I/O error, dev loop1, sector 85888 -[2241610.164097] print_req_error: I/O error, dev loop1, sector 86000 -[2241610.164252] print_req_error: I/O error, dev loop1, sector 20480 -[2241610.164399] print_req_error: I/O error, dev loop1, sector 20488 -[2241610.174298] print_req_error: I/O error, dev loop1, sector 5300096 -[2241610.174438] print_req_error: I/O error, dev loop1, sector 5300208 -[2241667.816991] print_req_error: 54 callbacks suppressed -[2241667.816992] print_req_error: I/O error, dev loop1, sector 9494400 -[2241667.817107] print_req_error: I/O error, dev loop1, sector 9494616 -[2241667.817168] print_req_error: I/O error, dev loop1, sector 5300224 -[2241667.817293] print_req_error: I/O error, dev loop1, sector 5300232 -[2241667.834639] print_req_error: I/O error, dev loop1, sector 85888 -[2241667.834714] print_req_error: I/O error, dev loop1, sector 86000 -[2241667.834777] print_req_error: I/O error, dev loop1, sector 20480 -[2241667.834829] print_req_error: I/O error, dev loop1, sector 20488 -[2241667.840304] print_req_error: I/O error, dev loop1, sector 5300096 -[2241667.840445] print_req_error: I/O error, dev loop1, sector 5300208 -[2263211.023405] print_req_error: 54 callbacks suppressed -[2263211.023407] print_req_error: I/O error, dev loop1, sector 9494400 -[2263211.023630] print_req_error: I/O error, dev loop1, sector 9494616 -[2263211.023690] print_req_error: I/O error, dev loop1, sector 5300224 -[2263211.023781] print_req_error: I/O error, dev loop1, sector 5300232 -[2263211.068997] print_req_error: I/O error, dev loop1, sector 85888 -[2263211.069093] print_req_error: I/O error, dev loop1, sector 86000 -[2263211.069188] print_req_error: I/O error, dev loop1, sector 20480 -[2263211.069250] print_req_error: I/O error, dev loop1, sector 20488 -[2263211.079662] print_req_error: I/O error, dev loop1, sector 5300096 -[2263211.079824] print_req_error: I/O error, dev loop1, sector 5300208 -[2263273.419934] print_req_error: 54 callbacks suppressed -[2263273.419935] print_req_error: I/O error, dev loop1, sector 9494400 -[2263273.420013] print_req_error: I/O error, dev loop1, sector 9494616 -[2263273.420046] print_req_error: I/O error, dev loop1, sector 5300224 -[2263273.420077] print_req_error: I/O error, dev loop1, sector 5300232 -[2263273.457260] print_req_error: I/O error, dev loop1, sector 85888 -[2263273.457415] print_req_error: I/O error, dev loop1, sector 86000 -[2263273.457554] print_req_error: I/O error, dev loop1, sector 20480 -[2263273.457698] print_req_error: I/O error, dev loop1, sector 20488 -[2263273.467665] print_req_error: I/O error, dev loop1, sector 5300096 -[2263273.467828] print_req_error: I/O error, dev loop1, sector 5300208 -[2284812.645887] print_req_error: 54 callbacks suppressed -[2284812.645888] print_req_error: I/O error, dev loop1, sector 9494400 -[2284812.646092] print_req_error: I/O error, dev loop1, sector 9494616 -[2284812.646153] print_req_error: I/O error, dev loop1, sector 5300224 -[2284812.646282] print_req_error: I/O error, dev loop1, sector 5300232 -[2284812.693987] print_req_error: I/O error, dev loop1, sector 85888 -[2284812.694131] print_req_error: I/O error, dev loop1, sector 86000 -[2284812.694209] print_req_error: I/O error, dev loop1, sector 20480 -[2284812.694338] print_req_error: I/O error, dev loop1, sector 20488 -[2284812.704225] print_req_error: I/O error, dev loop1, sector 5300096 -[2284812.704376] print_req_error: I/O error, dev loop1, sector 5300208 -[2284870.918182] print_req_error: 54 callbacks suppressed -[2284870.918184] print_req_error: I/O error, dev loop1, sector 9494400 -[2284870.918315] print_req_error: I/O error, dev loop1, sector 9494616 -[2284870.918374] print_req_error: I/O error, dev loop1, sector 5300224 -[2284870.918498] print_req_error: I/O error, dev loop1, sector 5300232 -[2284870.982223] print_req_error: I/O error, dev loop1, sector 85888 -[2284870.982373] print_req_error: I/O error, dev loop1, sector 86000 -[2284870.982481] print_req_error: I/O error, dev loop1, sector 20480 -[2284870.982550] print_req_error: I/O error, dev loop1, sector 20488 -[2284870.992423] print_req_error: I/O error, dev loop1, sector 5300096 -[2284870.992562] print_req_error: I/O error, dev loop1, sector 5300208 -[2306295.202505] print_req_error: 54 callbacks suppressed -[2306295.202507] print_req_error: I/O error, dev loop1, sector 9494400 -[2306295.202726] print_req_error: I/O error, dev loop1, sector 9494616 -[2306295.202797] print_req_error: I/O error, dev loop1, sector 5300224 -[2306295.202935] print_req_error: I/O error, dev loop1, sector 5300232 -[2306295.260881] print_req_error: I/O error, dev loop1, sector 85888 -[2306295.261025] print_req_error: I/O error, dev loop1, sector 86000 -[2306295.261164] print_req_error: I/O error, dev loop1, sector 20480 -[2306295.261304] print_req_error: I/O error, dev loop1, sector 20488 -[2306295.271478] print_req_error: I/O error, dev loop1, sector 5300096 -[2306295.271653] print_req_error: I/O error, dev loop1, sector 5300208 -[2306359.775188] print_req_error: 54 callbacks suppressed -[2306359.775190] print_req_error: I/O error, dev loop1, sector 9494400 -[2306359.775324] print_req_error: I/O error, dev loop1, sector 9494616 -[2306359.775383] print_req_error: I/O error, dev loop1, sector 5300224 -[2306359.775507] print_req_error: I/O error, dev loop1, sector 5300232 -[2306360.300717] print_req_error: I/O error, dev loop1, sector 85888 -[2306360.300895] print_req_error: I/O error, dev loop1, sector 86000 -[2306360.300979] print_req_error: I/O error, dev loop1, sector 20480 -[2306360.301048] print_req_error: I/O error, dev loop1, sector 20488 -[2306360.414414] print_req_error: I/O error, dev loop1, sector 5300096 -[2306360.414576] print_req_error: I/O error, dev loop1, sector 5300208 -[2326444.973753] print_req_error: 54 callbacks suppressed -[2326444.973755] print_req_error: I/O error, dev loop1, sector 9494400 -[2326444.973985] print_req_error: I/O error, dev loop1, sector 9494616 -[2326444.974048] print_req_error: I/O error, dev loop1, sector 5300224 -[2326444.974141] print_req_error: I/O error, dev loop1, sector 5300232 -[2326445.023289] print_req_error: I/O error, dev loop1, sector 85888 -[2326445.023437] print_req_error: I/O error, dev loop1, sector 86000 -[2326445.023582] print_req_error: I/O error, dev loop1, sector 20480 -[2326445.023730] print_req_error: I/O error, dev loop1, sector 20488 -[2326445.033675] print_req_error: I/O error, dev loop1, sector 5300096 -[2326445.033835] print_req_error: I/O error, dev loop1, sector 5300208 -[2326503.689529] print_req_error: 54 callbacks suppressed -[2326503.689531] print_req_error: I/O error, dev loop1, sector 9494400 -[2326503.689617] print_req_error: I/O error, dev loop1, sector 9494616 -[2326503.689650] print_req_error: I/O error, dev loop1, sector 5300224 -[2326503.689724] print_req_error: I/O error, dev loop1, sector 5300232 -[2326503.733569] print_req_error: I/O error, dev loop1, sector 85888 -[2326503.733658] print_req_error: I/O error, dev loop1, sector 86000 -[2326503.733691] print_req_error: I/O error, dev loop1, sector 20480 -[2326503.733762] print_req_error: I/O error, dev loop1, sector 20488 -[2326503.777500] print_req_error: I/O error, dev loop1, sector 5300096 -[2326503.777581] print_req_error: I/O error, dev loop1, sector 5300208 -[2348048.088540] print_req_error: 54 callbacks suppressed -[2348048.088542] print_req_error: I/O error, dev loop1, sector 9494400 -[2348048.088748] print_req_error: I/O error, dev loop1, sector 9494616 -[2348048.088817] print_req_error: I/O error, dev loop1, sector 5300224 -[2348048.088912] print_req_error: I/O error, dev loop1, sector 5300232 -[2348048.153775] print_req_error: I/O error, dev loop1, sector 85888 -[2348048.153921] print_req_error: I/O error, dev loop1, sector 86000 -[2348048.154021] print_req_error: I/O error, dev loop1, sector 20480 -[2348048.154118] print_req_error: I/O error, dev loop1, sector 20488 -[2348048.164476] print_req_error: I/O error, dev loop1, sector 5300096 -[2348048.164622] print_req_error: I/O error, dev loop1, sector 5300208 -[2348106.031526] print_req_error: 54 callbacks suppressed -[2348106.031527] print_req_error: I/O error, dev loop1, sector 9494400 -[2348106.031651] print_req_error: I/O error, dev loop1, sector 9494616 -[2348106.031711] print_req_error: I/O error, dev loop1, sector 5300224 -[2348106.031803] print_req_error: I/O error, dev loop1, sector 5300232 -[2348106.064496] print_req_error: I/O error, dev loop1, sector 85888 -[2348106.064658] print_req_error: I/O error, dev loop1, sector 86000 -[2348106.064743] print_req_error: I/O error, dev loop1, sector 20480 -[2348106.064889] print_req_error: I/O error, dev loop1, sector 20488 -[2348106.108566] print_req_error: I/O error, dev loop1, sector 5300096 -[2348106.108714] print_req_error: I/O error, dev loop1, sector 5300208 -[2369643.393219] print_req_error: 54 callbacks suppressed -[2369643.393220] print_req_error: I/O error, dev loop1, sector 9494400 -[2369643.393441] print_req_error: I/O error, dev loop1, sector 9494616 -[2369643.393502] print_req_error: I/O error, dev loop1, sector 5300224 -[2369643.393590] print_req_error: I/O error, dev loop1, sector 5300232 -[2369643.480266] print_req_error: I/O error, dev loop1, sector 85888 -[2369643.480414] print_req_error: I/O error, dev loop1, sector 86000 -[2369643.480497] print_req_error: I/O error, dev loop1, sector 20480 -[2369643.480613] print_req_error: I/O error, dev loop1, sector 20488 -[2369643.490617] print_req_error: I/O error, dev loop1, sector 5300096 -[2369643.490773] print_req_error: I/O error, dev loop1, sector 5300208 -[2369698.686380] print_req_error: 54 callbacks suppressed -[2369698.686382] print_req_error: I/O error, dev loop1, sector 9494400 -[2369698.686529] print_req_error: I/O error, dev loop1, sector 9494616 -[2369698.686605] print_req_error: I/O error, dev loop1, sector 5300224 -[2369698.686721] print_req_error: I/O error, dev loop1, sector 5300232 -[2369698.746285] print_req_error: I/O error, dev loop1, sector 85888 -[2369698.746425] print_req_error: I/O error, dev loop1, sector 86000 -[2369698.746569] print_req_error: I/O error, dev loop1, sector 20480 -[2369698.746704] print_req_error: I/O error, dev loop1, sector 20488 -[2369698.756858] print_req_error: I/O error, dev loop1, sector 5300096 -[2369698.757014] print_req_error: I/O error, dev loop1, sector 5300208 -[2391240.449429] print_req_error: 54 callbacks suppressed -[2391240.449430] print_req_error: I/O error, dev loop1, sector 9494400 -[2391240.449652] print_req_error: I/O error, dev loop1, sector 9494616 -[2391240.449715] print_req_error: I/O error, dev loop1, sector 5300224 -[2391240.449806] print_req_error: I/O error, dev loop1, sector 5300232 -[2391240.499313] print_req_error: I/O error, dev loop1, sector 85888 -[2391240.499451] print_req_error: I/O error, dev loop1, sector 86000 -[2391240.499588] print_req_error: I/O error, dev loop1, sector 20480 -[2391240.499734] print_req_error: I/O error, dev loop1, sector 20488 -[2391240.509801] print_req_error: I/O error, dev loop1, sector 5300096 -[2391240.509975] print_req_error: I/O error, dev loop1, sector 5300208 -[2391297.880530] print_req_error: 54 callbacks suppressed -[2391297.880531] print_req_error: I/O error, dev loop1, sector 9494400 -[2391297.880601] print_req_error: I/O error, dev loop1, sector 9494616 -[2391297.880716] print_req_error: I/O error, dev loop1, sector 5300224 -[2391297.880809] print_req_error: I/O error, dev loop1, sector 5300232 -[2391297.910109] print_req_error: I/O error, dev loop1, sector 85888 -[2391297.910248] print_req_error: I/O error, dev loop1, sector 86000 -[2391297.910331] print_req_error: I/O error, dev loop1, sector 20480 -[2391297.910459] print_req_error: I/O error, dev loop1, sector 20488 -[2391297.953994] print_req_error: I/O error, dev loop1, sector 5300096 -[2391297.954151] print_req_error: I/O error, dev loop1, sector 5300208 -[2412846.155681] print_req_error: 54 callbacks suppressed -[2412846.155682] print_req_error: I/O error, dev loop1, sector 9494400 -[2412846.155929] print_req_error: I/O error, dev loop1, sector 9494616 -[2412846.156000] print_req_error: I/O error, dev loop1, sector 5300224 -[2412846.156094] print_req_error: I/O error, dev loop1, sector 5300232 -[2412846.193598] print_req_error: I/O error, dev loop1, sector 85888 -[2412846.193724] print_req_error: I/O error, dev loop1, sector 86000 -[2412846.193843] print_req_error: I/O error, dev loop1, sector 20480 -[2412846.193942] print_req_error: I/O error, dev loop1, sector 20488 -[2412846.204186] print_req_error: I/O error, dev loop1, sector 5300096 -[2412846.204328] print_req_error: I/O error, dev loop1, sector 5300208 -[2412902.913051] print_req_error: 54 callbacks suppressed -[2412902.913053] print_req_error: I/O error, dev loop1, sector 9494400 -[2412902.913171] print_req_error: I/O error, dev loop1, sector 9494616 -[2412902.913280] print_req_error: I/O error, dev loop1, sector 5300224 -[2412902.913371] print_req_error: I/O error, dev loop1, sector 5300232 -[2412902.971032] print_req_error: I/O error, dev loop1, sector 85888 -[2412902.971175] print_req_error: I/O error, dev loop1, sector 86000 -[2412902.971321] print_req_error: I/O error, dev loop1, sector 20480 -[2412902.971416] print_req_error: I/O error, dev loop1, sector 20488 -[2412902.981552] print_req_error: I/O error, dev loop1, sector 5300096 -[2412902.981690] print_req_error: I/O error, dev loop1, sector 5300208 -[2434442.158586] print_req_error: 54 callbacks suppressed -[2434442.158588] print_req_error: I/O error, dev loop1, sector 9494400 -[2434442.158736] print_req_error: I/O error, dev loop1, sector 9494616 -[2434442.158813] print_req_error: I/O error, dev loop1, sector 5300224 -[2434442.158893] print_req_error: I/O error, dev loop1, sector 5300232 -[2434442.201518] print_req_error: I/O error, dev loop1, sector 85888 -[2434442.201659] print_req_error: I/O error, dev loop1, sector 86000 -[2434442.201728] print_req_error: I/O error, dev loop1, sector 20480 -[2434442.201859] print_req_error: I/O error, dev loop1, sector 20488 -[2434442.211940] print_req_error: I/O error, dev loop1, sector 5300096 -[2434442.212094] print_req_error: I/O error, dev loop1, sector 5300208 -[2434499.436873] print_req_error: 54 callbacks suppressed -[2434499.436875] print_req_error: I/O error, dev loop1, sector 9494400 -[2434499.436971] print_req_error: I/O error, dev loop1, sector 9494616 -[2434499.437029] print_req_error: I/O error, dev loop1, sector 5300224 -[2434499.437121] print_req_error: I/O error, dev loop1, sector 5300232 -[2434499.500723] print_req_error: I/O error, dev loop1, sector 85888 -[2434499.500862] print_req_error: I/O error, dev loop1, sector 86000 -[2434499.500997] print_req_error: I/O error, dev loop1, sector 20480 -[2434499.501130] print_req_error: I/O error, dev loop1, sector 20488 -[2434499.511433] print_req_error: I/O error, dev loop1, sector 5300096 -[2434499.511572] print_req_error: I/O error, dev loop1, sector 5300208 -[2456103.668662] print_req_error: 54 callbacks suppressed -[2456103.668664] print_req_error: I/O error, dev loop1, sector 9494400 -[2456103.668903] print_req_error: I/O error, dev loop1, sector 9494616 -[2456103.668969] print_req_error: I/O error, dev loop1, sector 5300224 -[2456103.669069] print_req_error: I/O error, dev loop1, sector 5300232 -[2456103.749691] print_req_error: I/O error, dev loop1, sector 85888 -[2456103.749847] print_req_error: I/O error, dev loop1, sector 86000 -[2456103.749925] print_req_error: I/O error, dev loop1, sector 20480 -[2456103.750063] print_req_error: I/O error, dev loop1, sector 20488 -[2456103.759881] print_req_error: I/O error, dev loop1, sector 5300096 -[2456103.760037] print_req_error: I/O error, dev loop1, sector 5300208 -[2456163.819983] print_req_error: 54 callbacks suppressed -[2456163.819984] print_req_error: I/O error, dev loop1, sector 9494400 -[2456163.820134] print_req_error: I/O error, dev loop1, sector 9494616 -[2456163.820198] print_req_error: I/O error, dev loop1, sector 5300224 -[2456163.820294] print_req_error: I/O error, dev loop1, sector 5300232 -[2456163.871015] print_req_error: I/O error, dev loop1, sector 85888 -[2456163.871166] print_req_error: I/O error, dev loop1, sector 86000 -[2456163.871280] print_req_error: I/O error, dev loop1, sector 20480 -[2456163.871393] print_req_error: I/O error, dev loop1, sector 20488 -[2456163.881601] print_req_error: I/O error, dev loop1, sector 5300096 -[2456163.881747] print_req_error: I/O error, dev loop1, sector 5300208 -[2477643.216650] print_req_error: 54 callbacks suppressed -[2477643.216652] print_req_error: I/O error, dev loop1, sector 9494400 -[2477643.216879] print_req_error: I/O error, dev loop1, sector 9494616 -[2477643.216944] print_req_error: I/O error, dev loop1, sector 5300224 -[2477643.217031] print_req_error: I/O error, dev loop1, sector 5300232 -[2477643.259151] print_req_error: I/O error, dev loop1, sector 85888 -[2477643.259303] print_req_error: I/O error, dev loop1, sector 86000 -[2477643.259453] print_req_error: I/O error, dev loop1, sector 20480 -[2477643.259603] print_req_error: I/O error, dev loop1, sector 20488 -[2477643.269553] print_req_error: I/O error, dev loop1, sector 5300096 -[2477643.269705] print_req_error: I/O error, dev loop1, sector 5300208 -[2477700.948247] print_req_error: 54 callbacks suppressed -[2477700.948249] print_req_error: I/O error, dev loop1, sector 9494400 -[2477700.948357] print_req_error: I/O error, dev loop1, sector 9494616 -[2477700.948415] print_req_error: I/O error, dev loop1, sector 5300224 -[2477700.948506] print_req_error: I/O error, dev loop1, sector 5300232 -[2477700.952272] print_req_error: I/O error, dev loop1, sector 85888 -[2477700.952413] print_req_error: I/O error, dev loop1, sector 86000 -[2477700.952509] print_req_error: I/O error, dev loop1, sector 20480 -[2477700.952573] print_req_error: I/O error, dev loop1, sector 20488 -[2477700.957689] print_req_error: I/O error, dev loop1, sector 5300096 -[2477700.957838] print_req_error: I/O error, dev loop1, sector 5300208 -[2499261.932980] print_req_error: 54 callbacks suppressed -[2499261.932982] print_req_error: I/O error, dev loop1, sector 9494400 -[2499261.933183] print_req_error: I/O error, dev loop1, sector 9494616 -[2499261.933245] print_req_error: I/O error, dev loop1, sector 5300224 -[2499261.933387] print_req_error: I/O error, dev loop1, sector 5300232 -[2499261.977326] print_req_error: I/O error, dev loop1, sector 85888 -[2499261.977491] print_req_error: I/O error, dev loop1, sector 86000 -[2499261.977580] print_req_error: I/O error, dev loop1, sector 20480 -[2499261.977735] print_req_error: I/O error, dev loop1, sector 20488 -[2499261.988056] print_req_error: I/O error, dev loop1, sector 5300096 -[2499261.988192] print_req_error: I/O error, dev loop1, sector 5300208 -[2499323.446519] print_req_error: 54 callbacks suppressed -[2499323.446520] print_req_error: I/O error, dev loop1, sector 9494400 -[2499323.446643] print_req_error: I/O error, dev loop1, sector 9494616 -[2499323.446773] print_req_error: I/O error, dev loop1, sector 5300224 -[2499323.446927] print_req_error: I/O error, dev loop1, sector 5300232 -[2499323.448940] print_req_error: I/O error, dev loop1, sector 85888 -[2499323.449103] print_req_error: I/O error, dev loop1, sector 86000 -[2499323.449161] print_req_error: I/O error, dev loop1, sector 20480 -[2499323.449291] print_req_error: I/O error, dev loop1, sector 20488 -[2499323.450739] print_req_error: I/O error, dev loop1, sector 5300096 -[2499323.450823] print_req_error: I/O error, dev loop1, sector 5300208 -[2520843.280826] print_req_error: 54 callbacks suppressed -[2520843.280827] print_req_error: I/O error, dev loop1, sector 9494400 -[2520843.281083] print_req_error: I/O error, dev loop1, sector 9494616 -[2520843.281158] print_req_error: I/O error, dev loop1, sector 5300224 -[2520843.281293] print_req_error: I/O error, dev loop1, sector 5300232 -[2520843.319983] print_req_error: I/O error, dev loop1, sector 85888 -[2520843.320096] print_req_error: I/O error, dev loop1, sector 86000 -[2520843.320261] print_req_error: I/O error, dev loop1, sector 20480 -[2520843.320414] print_req_error: I/O error, dev loop1, sector 20488 -[2520843.351829] print_req_error: I/O error, dev loop1, sector 5300096 -[2520843.351974] print_req_error: I/O error, dev loop1, sector 5300208 -[2520900.978009] print_req_error: 54 callbacks suppressed -[2520900.978010] print_req_error: I/O error, dev loop1, sector 9494400 -[2520900.978149] print_req_error: I/O error, dev loop1, sector 9494616 -[2520900.978224] print_req_error: I/O error, dev loop1, sector 5300224 -[2520900.978351] print_req_error: I/O error, dev loop1, sector 5300232 -[2520901.030631] print_req_error: I/O error, dev loop1, sector 85888 -[2520901.030781] print_req_error: I/O error, dev loop1, sector 86000 -[2520901.030848] print_req_error: I/O error, dev loop1, sector 20480 -[2520901.030920] print_req_error: I/O error, dev loop1, sector 20488 -[2520901.041341] print_req_error: I/O error, dev loop1, sector 5300096 -[2520901.041480] print_req_error: I/O error, dev loop1, sector 5300208 -[2542450.686954] print_req_error: 54 callbacks suppressed -[2542450.686956] print_req_error: I/O error, dev loop1, sector 9494400 -[2542450.687187] print_req_error: I/O error, dev loop1, sector 9494616 -[2542450.687267] print_req_error: I/O error, dev loop1, sector 5300224 -[2542450.687374] print_req_error: I/O error, dev loop1, sector 5300232 -[2542450.734988] print_req_error: I/O error, dev loop1, sector 85888 -[2542450.735139] print_req_error: I/O error, dev loop1, sector 86000 -[2542450.735291] print_req_error: I/O error, dev loop1, sector 20480 -[2542450.735441] print_req_error: I/O error, dev loop1, sector 20488 -[2542450.745541] print_req_error: I/O error, dev loop1, sector 5300096 -[2542450.745693] print_req_error: I/O error, dev loop1, sector 5300208 -[2542510.065446] print_req_error: 54 callbacks suppressed -[2542510.065448] print_req_error: I/O error, dev loop1, sector 9494400 -[2542510.065562] print_req_error: I/O error, dev loop1, sector 9494616 -[2542510.065622] print_req_error: I/O error, dev loop1, sector 5300224 -[2542510.065650] print_req_error: I/O error, dev loop1, sector 5300232 -[2542510.123230] print_req_error: I/O error, dev loop1, sector 85888 -[2542510.123379] print_req_error: I/O error, dev loop1, sector 86000 -[2542510.123519] print_req_error: I/O error, dev loop1, sector 20480 -[2542510.123663] print_req_error: I/O error, dev loop1, sector 20488 -[2542510.133786] print_req_error: I/O error, dev loop1, sector 5300096 -[2542510.133924] print_req_error: I/O error, dev loop1, sector 5300208 -[2564045.203961] print_req_error: 54 callbacks suppressed -[2564045.203962] print_req_error: I/O error, dev loop1, sector 9494400 -[2564045.204123] print_req_error: I/O error, dev loop1, sector 9494616 -[2564045.204186] print_req_error: I/O error, dev loop1, sector 5300224 -[2564045.204215] print_req_error: I/O error, dev loop1, sector 5300232 -[2564045.255472] print_req_error: I/O error, dev loop1, sector 85888 -[2564045.255599] print_req_error: I/O error, dev loop1, sector 86000 -[2564045.255744] print_req_error: I/O error, dev loop1, sector 20480 -[2564045.255842] print_req_error: I/O error, dev loop1, sector 20488 -[2564045.299007] print_req_error: I/O error, dev loop1, sector 5300096 -[2564045.299118] print_req_error: I/O error, dev loop1, sector 5300208 -[2564099.682454] print_req_error: 54 callbacks suppressed -[2564099.682456] print_req_error: I/O error, dev loop1, sector 9494400 -[2564099.682544] print_req_error: I/O error, dev loop1, sector 9494616 -[2564099.682609] print_req_error: I/O error, dev loop1, sector 5300224 -[2564099.682712] print_req_error: I/O error, dev loop1, sector 5300232 -[2564099.684605] print_req_error: I/O error, dev loop1, sector 85888 -[2564099.684726] print_req_error: I/O error, dev loop1, sector 86000 -[2564099.684823] print_req_error: I/O error, dev loop1, sector 20480 -[2564099.684913] print_req_error: I/O error, dev loop1, sector 20488 -[2564099.698660] print_req_error: I/O error, dev loop1, sector 5300096 -[2564099.698772] print_req_error: I/O error, dev loop1, sector 5300208 -[2585640.386471] print_req_error: 54 callbacks suppressed -[2585640.386473] print_req_error: I/O error, dev loop1, sector 9494400 -[2585640.386684] print_req_error: I/O error, dev loop1, sector 9494616 -[2585640.386747] print_req_error: I/O error, dev loop1, sector 5300224 -[2585640.386845] print_req_error: I/O error, dev loop1, sector 5300232 -[2585640.490270] print_req_error: I/O error, dev loop1, sector 85888 -[2585640.490372] print_req_error: I/O error, dev loop1, sector 86000 -[2585640.490509] print_req_error: I/O error, dev loop1, sector 20480 -[2585640.490604] print_req_error: I/O error, dev loop1, sector 20488 -[2585640.560227] print_req_error: I/O error, dev loop1, sector 5300096 -[2585640.560394] print_req_error: I/O error, dev loop1, sector 5300208 -[2585699.596860] print_req_error: 54 callbacks suppressed -[2585699.596861] print_req_error: I/O error, dev loop1, sector 9494400 -[2585699.596958] print_req_error: I/O error, dev loop1, sector 9494616 -[2585699.597006] print_req_error: I/O error, dev loop1, sector 5300224 -[2585699.597057] print_req_error: I/O error, dev loop1, sector 5300232 -[2585699.648223] print_req_error: I/O error, dev loop1, sector 85888 -[2585699.648388] print_req_error: I/O error, dev loop1, sector 86000 -[2585699.648536] print_req_error: I/O error, dev loop1, sector 20480 -[2585699.648637] print_req_error: I/O error, dev loop1, sector 20488 -[2585699.658832] print_req_error: I/O error, dev loop1, sector 5300096 -[2585699.658975] print_req_error: I/O error, dev loop1, sector 5300208 -[2607239.924971] print_req_error: 54 callbacks suppressed -[2607239.924973] print_req_error: I/O error, dev loop1, sector 9494400 -[2607239.925168] print_req_error: I/O error, dev loop1, sector 9494616 -[2607239.925228] print_req_error: I/O error, dev loop1, sector 5300224 -[2607239.925259] print_req_error: I/O error, dev loop1, sector 5300232 -[2607239.968843] print_req_error: I/O error, dev loop1, sector 85888 -[2607239.969008] print_req_error: I/O error, dev loop1, sector 86000 -[2607239.969091] print_req_error: I/O error, dev loop1, sector 20480 -[2607239.969255] print_req_error: I/O error, dev loop1, sector 20488 -[2607239.979299] print_req_error: I/O error, dev loop1, sector 5300096 -[2607239.979445] print_req_error: I/O error, dev loop1, sector 5300208 -[2607298.402303] print_req_error: 54 callbacks suppressed -[2607298.402304] print_req_error: I/O error, dev loop1, sector 9494400 -[2607298.402410] print_req_error: I/O error, dev loop1, sector 9494616 -[2607298.402466] print_req_error: I/O error, dev loop1, sector 5300224 -[2607298.402587] print_req_error: I/O error, dev loop1, sector 5300232 -[2607298.445597] print_req_error: I/O error, dev loop1, sector 85888 -[2607298.445741] print_req_error: I/O error, dev loop1, sector 86000 -[2607298.445885] print_req_error: I/O error, dev loop1, sector 20480 -[2607298.446035] print_req_error: I/O error, dev loop1, sector 20488 -[2607298.456281] print_req_error: I/O error, dev loop1, sector 5300096 -[2607298.456426] print_req_error: I/O error, dev loop1, sector 5300208 -[2628837.822047] print_req_error: 54 callbacks suppressed -[2628837.822048] print_req_error: I/O error, dev loop1, sector 9494400 -[2628837.822242] print_req_error: I/O error, dev loop1, sector 9494616 -[2628837.822308] print_req_error: I/O error, dev loop1, sector 5300224 -[2628837.822340] print_req_error: I/O error, dev loop1, sector 5300232 -[2628837.873366] print_req_error: I/O error, dev loop1, sector 85888 -[2628837.873515] print_req_error: I/O error, dev loop1, sector 86000 -[2628837.873657] print_req_error: I/O error, dev loop1, sector 20480 -[2628837.873764] print_req_error: I/O error, dev loop1, sector 20488 -[2628837.883752] print_req_error: I/O error, dev loop1, sector 5300096 -[2628837.883900] print_req_error: I/O error, dev loop1, sector 5300208 -[2628896.004288] print_req_error: 54 callbacks suppressed -[2628896.004290] print_req_error: I/O error, dev loop1, sector 9494400 -[2628896.004409] print_req_error: I/O error, dev loop1, sector 9494616 -[2628896.004480] print_req_error: I/O error, dev loop1, sector 5300224 -[2628896.004579] print_req_error: I/O error, dev loop1, sector 5300232 -[2628896.022008] print_req_error: I/O error, dev loop1, sector 85888 -[2628896.022118] print_req_error: I/O error, dev loop1, sector 86000 -[2628896.022227] print_req_error: I/O error, dev loop1, sector 20480 -[2628896.022335] print_req_error: I/O error, dev loop1, sector 20488 -[2628896.027460] print_req_error: I/O error, dev loop1, sector 5300096 -[2628896.027554] print_req_error: I/O error, dev loop1, sector 5300208 -[2650438.262483] print_req_error: 54 callbacks suppressed -[2650438.262485] print_req_error: I/O error, dev loop1, sector 9494400 -[2650438.262747] print_req_error: I/O error, dev loop1, sector 9494616 -[2650438.262817] print_req_error: I/O error, dev loop1, sector 5300224 -[2650438.262950] print_req_error: I/O error, dev loop1, sector 5300232 -[2650438.309559] print_req_error: I/O error, dev loop1, sector 85888 -[2650438.309743] print_req_error: I/O error, dev loop1, sector 86000 -[2650438.309830] print_req_error: I/O error, dev loop1, sector 20480 -[2650438.309974] print_req_error: I/O error, dev loop1, sector 20488 -[2650438.320558] print_req_error: I/O error, dev loop1, sector 5300096 -[2650438.320710] print_req_error: I/O error, dev loop1, sector 5300208 -[2650497.246965] print_req_error: 54 callbacks suppressed -[2650497.246967] print_req_error: I/O error, dev loop1, sector 9494400 -[2650497.247049] print_req_error: I/O error, dev loop1, sector 9494616 -[2650497.247086] print_req_error: I/O error, dev loop1, sector 5300224 -[2650497.247188] print_req_error: I/O error, dev loop1, sector 5300232 -[2650497.258079] print_req_error: I/O error, dev loop1, sector 85888 -[2650497.258191] print_req_error: I/O error, dev loop1, sector 86000 -[2650497.258251] print_req_error: I/O error, dev loop1, sector 20480 -[2650497.258374] print_req_error: I/O error, dev loop1, sector 20488 -[2650497.286243] print_req_error: I/O error, dev loop1, sector 5300096 -[2650497.286388] print_req_error: I/O error, dev loop1, sector 5300208 -[2672037.600551] print_req_error: 54 callbacks suppressed -[2672037.600552] print_req_error: I/O error, dev loop1, sector 9494400 -[2672037.600733] print_req_error: I/O error, dev loop1, sector 9494616 -[2672037.600836] print_req_error: I/O error, dev loop1, sector 5300224 -[2672037.600942] print_req_error: I/O error, dev loop1, sector 5300232 -[2672037.911080] print_req_error: I/O error, dev loop1, sector 85888 -[2672037.911252] print_req_error: I/O error, dev loop1, sector 86000 -[2672037.911338] print_req_error: I/O error, dev loop1, sector 20480 -[2672037.911409] print_req_error: I/O error, dev loop1, sector 20488 -[2672038.116902] print_req_error: I/O error, dev loop1, sector 5300096 -[2672038.117067] print_req_error: I/O error, dev loop1, sector 5300208 -[2672097.782012] print_req_error: 54 callbacks suppressed -[2672097.782014] print_req_error: I/O error, dev loop1, sector 9494400 -[2672097.782166] print_req_error: I/O error, dev loop1, sector 9494616 -[2672097.782274] print_req_error: I/O error, dev loop1, sector 5300224 -[2672097.782344] print_req_error: I/O error, dev loop1, sector 5300232 -[2672097.817002] print_req_error: I/O error, dev loop1, sector 85888 -[2672097.817144] print_req_error: I/O error, dev loop1, sector 86000 -[2672097.817221] print_req_error: I/O error, dev loop1, sector 20480 -[2672097.817375] print_req_error: I/O error, dev loop1, sector 20488 -[2672097.860971] print_req_error: I/O error, dev loop1, sector 5300096 -[2672097.861125] print_req_error: I/O error, dev loop1, sector 5300208 -[2693642.041832] print_req_error: 54 callbacks suppressed -[2693642.041833] print_req_error: I/O error, dev loop1, sector 9494400 -[2693642.042023] print_req_error: I/O error, dev loop1, sector 9494616 -[2693642.042085] print_req_error: I/O error, dev loop1, sector 5300224 -[2693642.042213] print_req_error: I/O error, dev loop1, sector 5300232 -[2693642.102519] print_req_error: I/O error, dev loop1, sector 85888 -[2693642.102699] print_req_error: I/O error, dev loop1, sector 86000 -[2693642.102850] print_req_error: I/O error, dev loop1, sector 20480 -[2693642.102998] print_req_error: I/O error, dev loop1, sector 20488 -[2693642.113049] print_req_error: I/O error, dev loop1, sector 5300096 -[2693642.113202] print_req_error: I/O error, dev loop1, sector 5300208 -[2693699.891841] print_req_error: 54 callbacks suppressed -[2693699.891842] print_req_error: I/O error, dev loop1, sector 9494400 -[2693699.891991] print_req_error: I/O error, dev loop1, sector 9494616 -[2693699.892051] print_req_error: I/O error, dev loop1, sector 5300224 -[2693699.892143] print_req_error: I/O error, dev loop1, sector 5300232 -[2693699.906214] print_req_error: I/O error, dev loop1, sector 85888 -[2693699.906325] print_req_error: I/O error, dev loop1, sector 86000 -[2693699.906384] print_req_error: I/O error, dev loop1, sector 20480 -[2693699.906475] print_req_error: I/O error, dev loop1, sector 20488 -[2693699.911921] print_req_error: I/O error, dev loop1, sector 5300096 -[2693699.912053] print_req_error: I/O error, dev loop1, sector 5300208 -[2715236.075419] print_req_error: 54 callbacks suppressed -[2715236.075420] print_req_error: I/O error, dev loop1, sector 9494400 -[2715236.075619] print_req_error: I/O error, dev loop1, sector 9494616 -[2715236.075682] print_req_error: I/O error, dev loop1, sector 5300224 -[2715236.075781] print_req_error: I/O error, dev loop1, sector 5300232 -[2715236.181342] print_req_error: I/O error, dev loop1, sector 85888 -[2715236.181498] print_req_error: I/O error, dev loop1, sector 86000 -[2715236.181646] print_req_error: I/O error, dev loop1, sector 20480 -[2715236.181802] print_req_error: I/O error, dev loop1, sector 20488 -[2715236.226301] print_req_error: I/O error, dev loop1, sector 5300096 -[2715236.226483] print_req_error: I/O error, dev loop1, sector 5300208 -[2715293.990452] print_req_error: 54 callbacks suppressed -[2715293.990454] print_req_error: I/O error, dev loop1, sector 9494400 -[2715293.990602] print_req_error: I/O error, dev loop1, sector 9494616 -[2715293.990663] print_req_error: I/O error, dev loop1, sector 5300224 -[2715293.990790] print_req_error: I/O error, dev loop1, sector 5300232 -[2715294.038690] print_req_error: I/O error, dev loop1, sector 85888 -[2715294.038834] print_req_error: I/O error, dev loop1, sector 86000 -[2715294.038978] print_req_error: I/O error, dev loop1, sector 20480 -[2715294.039116] print_req_error: I/O error, dev loop1, sector 20488 -[2715294.049167] print_req_error: I/O error, dev loop1, sector 5300096 -[2715294.049312] print_req_error: I/O error, dev loop1, sector 5300208 -[2736837.627712] print_req_error: 54 callbacks suppressed -[2736837.627714] print_req_error: I/O error, dev loop1, sector 9494400 -[2736837.627923] print_req_error: I/O error, dev loop1, sector 9494616 -[2736837.627995] print_req_error: I/O error, dev loop1, sector 5300224 -[2736837.628082] print_req_error: I/O error, dev loop1, sector 5300232 -[2736837.670124] print_req_error: I/O error, dev loop1, sector 85888 -[2736837.670291] print_req_error: I/O error, dev loop1, sector 86000 -[2736837.670390] print_req_error: I/O error, dev loop1, sector 20480 -[2736837.670546] print_req_error: I/O error, dev loop1, sector 20488 -[2736837.701903] print_req_error: I/O error, dev loop1, sector 5300096 -[2736837.702055] print_req_error: I/O error, dev loop1, sector 5300208 -[2736894.915792] print_req_error: 54 callbacks suppressed -[2736894.915794] print_req_error: I/O error, dev loop1, sector 9494400 -[2736894.915945] print_req_error: I/O error, dev loop1, sector 9494616 -[2736894.916011] print_req_error: I/O error, dev loop1, sector 5300224 -[2736894.916044] print_req_error: I/O error, dev loop1, sector 5300232 -[2736894.918335] print_req_error: I/O error, dev loop1, sector 85888 -[2736894.918472] print_req_error: I/O error, dev loop1, sector 86000 -[2736894.918551] print_req_error: I/O error, dev loop1, sector 20480 -[2736894.918601] print_req_error: I/O error, dev loop1, sector 20488 -[2736894.924535] print_req_error: I/O error, dev loop1, sector 5300096 -[2736894.924645] print_req_error: I/O error, dev loop1, sector 5300208 -[2758439.253962] print_req_error: 54 callbacks suppressed -[2758439.253964] print_req_error: I/O error, dev loop1, sector 9494400 -[2758439.254136] print_req_error: I/O error, dev loop1, sector 9494616 -[2758439.254234] print_req_error: I/O error, dev loop1, sector 5300224 -[2758439.254353] print_req_error: I/O error, dev loop1, sector 5300232 -[2758439.302007] print_req_error: I/O error, dev loop1, sector 85888 -[2758439.302167] print_req_error: I/O error, dev loop1, sector 86000 -[2758439.302259] print_req_error: I/O error, dev loop1, sector 20480 -[2758439.302416] print_req_error: I/O error, dev loop1, sector 20488 -[2758439.312317] print_req_error: I/O error, dev loop1, sector 5300096 -[2758439.312473] print_req_error: I/O error, dev loop1, sector 5300208 -[2758497.709296] print_req_error: 54 callbacks suppressed -[2758497.709298] print_req_error: I/O error, dev loop1, sector 9494400 -[2758497.709422] print_req_error: I/O error, dev loop1, sector 9494616 -[2758497.709486] print_req_error: I/O error, dev loop1, sector 5300224 -[2758497.709520] print_req_error: I/O error, dev loop1, sector 5300232 -[2758497.711161] print_req_error: I/O error, dev loop1, sector 85888 -[2758497.711312] print_req_error: I/O error, dev loop1, sector 86000 -[2758497.711387] print_req_error: I/O error, dev loop1, sector 20480 -[2758497.711504] print_req_error: I/O error, dev loop1, sector 20488 -[2758497.712560] print_req_error: I/O error, dev loop1, sector 5300096 -[2758497.712682] print_req_error: I/O error, dev loop1, sector 5300208 -[2780036.121667] print_req_error: 54 callbacks suppressed -[2780036.121668] print_req_error: I/O error, dev loop1, sector 9494400 -[2780036.121801] print_req_error: I/O error, dev loop1, sector 9494616 -[2780036.121836] print_req_error: I/O error, dev loop1, sector 5300224 -[2780036.121970] print_req_error: I/O error, dev loop1, sector 5300232 -[2780036.173720] print_req_error: I/O error, dev loop1, sector 85888 -[2780036.173889] print_req_error: I/O error, dev loop1, sector 86000 -[2780036.173972] print_req_error: I/O error, dev loop1, sector 20480 -[2780036.174117] print_req_error: I/O error, dev loop1, sector 20488 -[2780036.205487] print_req_error: I/O error, dev loop1, sector 5300096 -[2780036.205586] print_req_error: I/O error, dev loop1, sector 5300208 -[2780092.970132] print_req_error: 54 callbacks suppressed -[2780092.970156] print_req_error: I/O error, dev loop1, sector 9494400 -[2780092.970257] print_req_error: I/O error, dev loop1, sector 9494616 -[2780092.970319] print_req_error: I/O error, dev loop1, sector 5300224 -[2780092.970406] print_req_error: I/O error, dev loop1, sector 5300232 -[2780092.971506] print_req_error: I/O error, dev loop1, sector 85888 -[2780092.971588] print_req_error: I/O error, dev loop1, sector 86000 -[2780092.971616] print_req_error: I/O error, dev loop1, sector 20480 -[2780092.971684] print_req_error: I/O error, dev loop1, sector 20488 -[2780092.983513] print_req_error: I/O error, dev loop1, sector 5300096 -[2780092.983667] print_req_error: I/O error, dev loop1, sector 5300208 -[2801637.102362] print_req_error: 54 callbacks suppressed -[2801637.102364] print_req_error: I/O error, dev loop1, sector 9494400 -[2801637.102544] print_req_error: I/O error, dev loop1, sector 9494616 -[2801637.102678] print_req_error: I/O error, dev loop1, sector 5300224 -[2801637.102801] print_req_error: I/O error, dev loop1, sector 5300232 -[2801637.149329] print_req_error: I/O error, dev loop1, sector 85888 -[2801637.149496] print_req_error: I/O error, dev loop1, sector 86000 -[2801637.149590] print_req_error: I/O error, dev loop1, sector 20480 -[2801637.149745] print_req_error: I/O error, dev loop1, sector 20488 -[2801637.193116] print_req_error: I/O error, dev loop1, sector 5300096 -[2801637.193267] print_req_error: I/O error, dev loop1, sector 5300208 -[2801698.988086] print_req_error: 54 callbacks suppressed -[2801698.988088] print_req_error: I/O error, dev loop1, sector 9494400 -[2801698.988264] print_req_error: I/O error, dev loop1, sector 9494616 -[2801698.988328] print_req_error: I/O error, dev loop1, sector 5300224 -[2801698.988374] print_req_error: I/O error, dev loop1, sector 5300232 -[2801699.037381] print_req_error: I/O error, dev loop1, sector 85888 -[2801699.037524] print_req_error: I/O error, dev loop1, sector 86000 -[2801699.037602] print_req_error: I/O error, dev loop1, sector 20480 -[2801699.037739] print_req_error: I/O error, dev loop1, sector 20488 -[2801699.048017] print_req_error: I/O error, dev loop1, sector 5300096 -[2801699.048163] print_req_error: I/O error, dev loop1, sector 5300208 -[2823236.589303] print_req_error: 54 callbacks suppressed -[2823236.589305] print_req_error: I/O error, dev loop1, sector 9494400 -[2823236.589546] print_req_error: I/O error, dev loop1, sector 9494616 -[2823236.589611] print_req_error: I/O error, dev loop1, sector 5300224 -[2823236.589706] print_req_error: I/O error, dev loop1, sector 5300232 -[2823237.123073] print_req_error: I/O error, dev loop1, sector 85888 -[2823237.123244] print_req_error: I/O error, dev loop1, sector 86000 -[2823237.123328] print_req_error: I/O error, dev loop1, sector 20480 -[2823237.123469] print_req_error: I/O error, dev loop1, sector 20488 -[2823237.154731] print_req_error: I/O error, dev loop1, sector 5300096 -[2823237.154883] print_req_error: I/O error, dev loop1, sector 5300208 -[2823294.094139] print_req_error: 54 callbacks suppressed -[2823294.094140] print_req_error: I/O error, dev loop1, sector 9494400 -[2823294.094226] print_req_error: I/O error, dev loop1, sector 9494616 -[2823294.094293] print_req_error: I/O error, dev loop1, sector 5300224 -[2823294.094368] print_req_error: I/O error, dev loop1, sector 5300232 -[2823294.145004] print_req_error: I/O error, dev loop1, sector 85888 -[2823294.145141] print_req_error: I/O error, dev loop1, sector 86000 -[2823294.145215] print_req_error: I/O error, dev loop1, sector 20480 -[2823294.145341] print_req_error: I/O error, dev loop1, sector 20488 -[2823294.155207] print_req_error: I/O error, dev loop1, sector 5300096 -[2823294.155303] print_req_error: I/O error, dev loop1, sector 5300208 -[2844835.545593] print_req_error: 54 callbacks suppressed -[2844835.545595] print_req_error: I/O error, dev loop1, sector 9494400 -[2844835.545835] print_req_error: I/O error, dev loop1, sector 9494616 -[2844835.545901] print_req_error: I/O error, dev loop1, sector 5300224 -[2844835.545937] print_req_error: I/O error, dev loop1, sector 5300232 -[2844835.586263] print_req_error: I/O error, dev loop1, sector 85888 -[2844835.586417] print_req_error: I/O error, dev loop1, sector 86000 -[2844835.586562] print_req_error: I/O error, dev loop1, sector 20480 -[2844835.586710] print_req_error: I/O error, dev loop1, sector 20488 -[2844835.596654] print_req_error: I/O error, dev loop1, sector 5300096 -[2844835.596801] print_req_error: I/O error, dev loop1, sector 5300208 -[2844893.850206] print_req_error: 54 callbacks suppressed -[2844893.850208] print_req_error: I/O error, dev loop1, sector 9494400 -[2844893.850327] print_req_error: I/O error, dev loop1, sector 9494616 -[2844893.850387] print_req_error: I/O error, dev loop1, sector 5300224 -[2844893.850508] print_req_error: I/O error, dev loop1, sector 5300232 -[2844893.897174] print_req_error: I/O error, dev loop1, sector 85888 -[2844893.897306] print_req_error: I/O error, dev loop1, sector 86000 -[2844893.897459] print_req_error: I/O error, dev loop1, sector 20480 -[2844893.897602] print_req_error: I/O error, dev loop1, sector 20488 -[2844893.907478] print_req_error: I/O error, dev loop1, sector 5300096 -[2844893.907623] print_req_error: I/O error, dev loop1, sector 5300208 -[2866436.206426] print_req_error: 54 callbacks suppressed -[2866436.206428] print_req_error: I/O error, dev loop1, sector 9494400 -[2866436.206653] print_req_error: I/O error, dev loop1, sector 9494616 -[2866436.206711] print_req_error: I/O error, dev loop1, sector 5300224 -[2866436.206794] print_req_error: I/O error, dev loop1, sector 5300232 -[2866436.257428] print_req_error: I/O error, dev loop1, sector 85888 -[2866436.257588] print_req_error: I/O error, dev loop1, sector 86000 -[2866436.257658] print_req_error: I/O error, dev loop1, sector 20480 -[2866436.257781] print_req_error: I/O error, dev loop1, sector 20488 -[2866436.268068] print_req_error: I/O error, dev loop1, sector 5300096 -[2866436.268209] print_req_error: I/O error, dev loop1, sector 5300208 -[2866493.831641] print_req_error: 54 callbacks suppressed -[2866493.831642] print_req_error: I/O error, dev loop1, sector 9494400 -[2866493.831724] print_req_error: I/O error, dev loop1, sector 9494616 -[2866493.831758] print_req_error: I/O error, dev loop1, sector 5300224 -[2866493.831825] print_req_error: I/O error, dev loop1, sector 5300232 -[2866493.867705] print_req_error: I/O error, dev loop1, sector 85888 -[2866493.867788] print_req_error: I/O error, dev loop1, sector 86000 -[2866493.867855] print_req_error: I/O error, dev loop1, sector 20480 -[2866493.867927] print_req_error: I/O error, dev loop1, sector 20488 -[2866493.911999] print_req_error: I/O error, dev loop1, sector 5300096 -[2866493.912131] print_req_error: I/O error, dev loop1, sector 5300208 -[2888040.321150] print_req_error: 54 callbacks suppressed -[2888040.321152] print_req_error: I/O error, dev loop1, sector 9494400 -[2888040.321346] print_req_error: I/O error, dev loop1, sector 9494616 -[2888040.321408] print_req_error: I/O error, dev loop1, sector 5300224 -[2888040.321534] print_req_error: I/O error, dev loop1, sector 5300232 -[2888040.399396] print_req_error: I/O error, dev loop1, sector 85888 -[2888040.399545] print_req_error: I/O error, dev loop1, sector 86000 -[2888040.399641] print_req_error: I/O error, dev loop1, sector 20480 -[2888040.399789] print_req_error: I/O error, dev loop1, sector 20488 -[2888040.420874] print_req_error: I/O error, dev loop1, sector 5300096 -[2888040.421026] print_req_error: I/O error, dev loop1, sector 5300208 -[2888099.802044] print_req_error: 54 callbacks suppressed -[2888099.802045] print_req_error: I/O error, dev loop1, sector 9494400 -[2888099.802117] print_req_error: I/O error, dev loop1, sector 9494616 -[2888099.802168] print_req_error: I/O error, dev loop1, sector 5300224 -[2888099.802204] print_req_error: I/O error, dev loop1, sector 5300232 -[2888099.825369] print_req_error: I/O error, dev loop1, sector 85888 -[2888099.825451] print_req_error: I/O error, dev loop1, sector 86000 -[2888099.825517] print_req_error: I/O error, dev loop1, sector 20480 -[2888099.825584] print_req_error: I/O error, dev loop1, sector 20488 -[2888099.830689] print_req_error: I/O error, dev loop1, sector 5300096 -[2888099.830757] print_req_error: I/O error, dev loop1, sector 5300208 -[2909633.848576] print_req_error: 54 callbacks suppressed -[2909633.848578] print_req_error: I/O error, dev loop1, sector 9494400 -[2909633.848792] print_req_error: I/O error, dev loop1, sector 9494616 -[2909633.848886] print_req_error: I/O error, dev loop1, sector 5300224 -[2909633.848977] print_req_error: I/O error, dev loop1, sector 5300232 -[2909633.895892] print_req_error: I/O error, dev loop1, sector 85888 -[2909633.896003] print_req_error: I/O error, dev loop1, sector 86000 -[2909633.896139] print_req_error: I/O error, dev loop1, sector 20480 -[2909633.896277] print_req_error: I/O error, dev loop1, sector 20488 -[2909633.939700] print_req_error: I/O error, dev loop1, sector 5300096 -[2909633.939850] print_req_error: I/O error, dev loop1, sector 5300208 -[2909692.509340] print_req_error: 54 callbacks suppressed -[2909692.509342] print_req_error: I/O error, dev loop1, sector 9494400 -[2909692.509458] print_req_error: I/O error, dev loop1, sector 9494616 -[2909692.509522] print_req_error: I/O error, dev loop1, sector 5300224 -[2909692.509644] print_req_error: I/O error, dev loop1, sector 5300232 -[2909692.511192] print_req_error: I/O error, dev loop1, sector 85888 -[2909692.511296] print_req_error: I/O error, dev loop1, sector 86000 -[2909692.511355] print_req_error: I/O error, dev loop1, sector 20480 -[2909692.511447] print_req_error: I/O error, dev loop1, sector 20488 -[2909692.539275] print_req_error: I/O error, dev loop1, sector 5300096 -[2909692.539398] print_req_error: I/O error, dev loop1, sector 5300208 -[2931236.578934] print_req_error: 54 callbacks suppressed -[2931236.578936] print_req_error: I/O error, dev loop1, sector 9494400 -[2931236.579183] print_req_error: I/O error, dev loop1, sector 9494616 -[2931236.579254] print_req_error: I/O error, dev loop1, sector 5300224 -[2931236.579326] print_req_error: I/O error, dev loop1, sector 5300232 -[2931236.625290] print_req_error: I/O error, dev loop1, sector 85888 -[2931236.625457] print_req_error: I/O error, dev loop1, sector 86000 -[2931236.625553] print_req_error: I/O error, dev loop1, sector 20480 -[2931236.625704] print_req_error: I/O error, dev loop1, sector 20488 -[2931236.635509] print_req_error: I/O error, dev loop1, sector 5300096 -[2931236.635695] print_req_error: I/O error, dev loop1, sector 5300208 -[2931292.770310] print_req_error: 54 callbacks suppressed -[2931292.770311] print_req_error: I/O error, dev loop1, sector 9494400 -[2931292.770383] print_req_error: I/O error, dev loop1, sector 9494616 -[2931292.770447] print_req_error: I/O error, dev loop1, sector 5300224 -[2931292.770533] print_req_error: I/O error, dev loop1, sector 5300232 -[2931292.784678] print_req_error: I/O error, dev loop1, sector 85888 -[2931292.784793] print_req_error: I/O error, dev loop1, sector 86000 -[2931292.784906] print_req_error: I/O error, dev loop1, sector 20480 -[2931292.785020] print_req_error: I/O error, dev loop1, sector 20488 -[2931292.790256] print_req_error: I/O error, dev loop1, sector 5300096 -[2931292.790413] print_req_error: I/O error, dev loop1, sector 5300208 -[2952859.457978] print_req_error: 54 callbacks suppressed -[2952859.457979] print_req_error: I/O error, dev loop1, sector 9494400 -[2952859.458200] print_req_error: I/O error, dev loop1, sector 9494616 -[2952859.458260] print_req_error: I/O error, dev loop1, sector 5300224 -[2952859.458355] print_req_error: I/O error, dev loop1, sector 5300232 -[2952859.468678] print_req_error: I/O error, dev loop1, sector 85888 -[2952859.468789] print_req_error: I/O error, dev loop1, sector 86000 -[2952859.468906] print_req_error: I/O error, dev loop1, sector 20480 -[2952859.469016] print_req_error: I/O error, dev loop1, sector 20488 -[2952859.474360] print_req_error: I/O error, dev loop1, sector 5300096 -[2952859.474490] print_req_error: I/O error, dev loop1, sector 5300208 -[2952919.959887] print_req_error: 54 callbacks suppressed -[2952919.959888] print_req_error: I/O error, dev loop1, sector 9494400 -[2952919.960046] print_req_error: I/O error, dev loop1, sector 9494616 -[2952919.960112] print_req_error: I/O error, dev loop1, sector 5300224 -[2952919.960216] print_req_error: I/O error, dev loop1, sector 5300232 -[2952919.979258] print_req_error: I/O error, dev loop1, sector 85888 -[2952919.979382] print_req_error: I/O error, dev loop1, sector 86000 -[2952919.979505] print_req_error: I/O error, dev loop1, sector 20480 -[2952919.979631] print_req_error: I/O error, dev loop1, sector 20488 -[2952919.985305] print_req_error: I/O error, dev loop1, sector 5300096 -[2952919.985473] print_req_error: I/O error, dev loop1, sector 5300208 -[2974438.403854] print_req_error: 54 callbacks suppressed -[2974438.403856] print_req_error: I/O error, dev loop1, sector 9494400 -[2974438.404102] print_req_error: I/O error, dev loop1, sector 9494616 -[2974438.404168] print_req_error: I/O error, dev loop1, sector 5300224 -[2974438.404301] print_req_error: I/O error, dev loop1, sector 5300232 -[2974438.446573] print_req_error: I/O error, dev loop1, sector 85888 -[2974438.446755] print_req_error: I/O error, dev loop1, sector 86000 -[2974438.446918] print_req_error: I/O error, dev loop1, sector 20480 -[2974438.447054] print_req_error: I/O error, dev loop1, sector 20488 -[2974438.457171] print_req_error: I/O error, dev loop1, sector 5300096 -[2974438.457319] print_req_error: I/O error, dev loop1, sector 5300208 -[2974495.048081] print_req_error: 54 callbacks suppressed -[2974495.048082] print_req_error: I/O error, dev loop1, sector 9494400 -[2974495.048154] print_req_error: I/O error, dev loop1, sector 9494616 -[2974495.048205] print_req_error: I/O error, dev loop1, sector 5300224 -[2974495.048270] print_req_error: I/O error, dev loop1, sector 5300232 -[2974495.165834] print_req_error: I/O error, dev loop1, sector 85888 -[2974495.165954] print_req_error: I/O error, dev loop1, sector 86000 -[2974495.166058] print_req_error: I/O error, dev loop1, sector 20480 -[2974495.166128] print_req_error: I/O error, dev loop1, sector 20488 -[2974495.211023] print_req_error: I/O error, dev loop1, sector 5300096 -[2974495.211165] print_req_error: I/O error, dev loop1, sector 5300208 -[2996033.988114] print_req_error: 54 callbacks suppressed -[2996033.988116] print_req_error: I/O error, dev loop1, sector 9494400 -[2996033.988350] print_req_error: I/O error, dev loop1, sector 9494616 -[2996033.988415] print_req_error: I/O error, dev loop1, sector 5300224 -[2996033.988545] print_req_error: I/O error, dev loop1, sector 5300232 -[2996033.990619] print_req_error: I/O error, dev loop1, sector 85888 -[2996033.990746] print_req_error: I/O error, dev loop1, sector 86000 -[2996033.990818] print_req_error: I/O error, dev loop1, sector 20480 -[2996033.990963] print_req_error: I/O error, dev loop1, sector 20488 -[2996034.043058] print_req_error: I/O error, dev loop1, sector 5300096 -[2996034.043221] print_req_error: I/O error, dev loop1, sector 5300208 -[2996088.856635] print_req_error: 54 callbacks suppressed -[2996088.856637] print_req_error: I/O error, dev loop1, sector 9494400 -[2996088.856790] print_req_error: I/O error, dev loop1, sector 9494616 -[2996088.856854] print_req_error: I/O error, dev loop1, sector 5300224 -[2996088.856951] print_req_error: I/O error, dev loop1, sector 5300232 -[2996088.858696] print_req_error: I/O error, dev loop1, sector 85888 -[2996088.858798] print_req_error: I/O error, dev loop1, sector 86000 -[2996088.858912] print_req_error: I/O error, dev loop1, sector 20480 -[2996088.859053] print_req_error: I/O error, dev loop1, sector 20488 -[2996088.864200] print_req_error: I/O error, dev loop1, sector 5300096 -[2996088.864284] print_req_error: I/O error, dev loop1, sector 5300208 -[3017643.020541] print_req_error: 54 callbacks suppressed -[3017643.020542] print_req_error: I/O error, dev loop1, sector 9494400 -[3017643.020763] print_req_error: I/O error, dev loop1, sector 9494616 -[3017643.020832] print_req_error: I/O error, dev loop1, sector 5300224 -[3017643.020933] print_req_error: I/O error, dev loop1, sector 5300232 -[3017643.023060] print_req_error: I/O error, dev loop1, sector 85888 -[3017643.023197] print_req_error: I/O error, dev loop1, sector 86000 -[3017643.023270] print_req_error: I/O error, dev loop1, sector 20480 -[3017643.023419] print_req_error: I/O error, dev loop1, sector 20488 -[3017643.071245] print_req_error: I/O error, dev loop1, sector 5300096 -[3017643.071415] print_req_error: I/O error, dev loop1, sector 5300208 -[3017703.145099] print_req_error: 54 callbacks suppressed -[3017703.145101] print_req_error: I/O error, dev loop1, sector 9494400 -[3017703.145152] print_req_error: I/O error, dev loop1, sector 9494616 -[3017703.145186] print_req_error: I/O error, dev loop1, sector 5300224 -[3017703.145212] print_req_error: I/O error, dev loop1, sector 5300232 -[3017703.147404] print_req_error: I/O error, dev loop1, sector 85888 -[3017703.147446] print_req_error: I/O error, dev loop1, sector 86000 -[3017703.147475] print_req_error: I/O error, dev loop1, sector 20480 -[3017703.147501] print_req_error: I/O error, dev loop1, sector 20488 -[3017703.236316] print_req_error: I/O error, dev loop1, sector 5300096 -[3017703.236466] print_req_error: I/O error, dev loop1, sector 5300208 -[3039236.023366] print_req_error: 54 callbacks suppressed -[3039236.023367] print_req_error: I/O error, dev loop1, sector 9494400 -[3039236.023593] print_req_error: I/O error, dev loop1, sector 9494616 -[3039236.023665] print_req_error: I/O error, dev loop1, sector 5300224 -[3039236.023695] print_req_error: I/O error, dev loop1, sector 5300232 -[3039236.069107] print_req_error: I/O error, dev loop1, sector 85888 -[3039236.069268] print_req_error: I/O error, dev loop1, sector 86000 -[3039236.069363] print_req_error: I/O error, dev loop1, sector 20480 -[3039236.069522] print_req_error: I/O error, dev loop1, sector 20488 -[3039236.079332] print_req_error: I/O error, dev loop1, sector 5300096 -[3039236.079486] print_req_error: I/O error, dev loop1, sector 5300208 -[3039295.853058] print_req_error: 54 callbacks suppressed -[3039295.853060] print_req_error: I/O error, dev loop1, sector 9494400 -[3039295.853168] print_req_error: I/O error, dev loop1, sector 9494616 -[3039295.853226] print_req_error: I/O error, dev loop1, sector 5300224 -[3039295.853349] print_req_error: I/O error, dev loop1, sector 5300232 -[3039295.890612] print_req_error: I/O error, dev loop1, sector 85888 -[3039295.890767] print_req_error: I/O error, dev loop1, sector 86000 -[3039295.890836] print_req_error: I/O error, dev loop1, sector 20480 -[3039295.890920] print_req_error: I/O error, dev loop1, sector 20488 -[3039295.934533] print_req_error: I/O error, dev loop1, sector 5300096 -[3039295.934683] print_req_error: I/O error, dev loop1, sector 5300208 -[3060838.815272] print_req_error: 54 callbacks suppressed -[3060838.815273] print_req_error: I/O error, dev loop1, sector 9494400 -[3060838.815442] print_req_error: I/O error, dev loop1, sector 9494616 -[3060838.815516] print_req_error: I/O error, dev loop1, sector 5300224 -[3060838.815547] print_req_error: I/O error, dev loop1, sector 5300232 -[3060841.768061] print_req_error: I/O error, dev loop1, sector 85888 -[3060841.768225] print_req_error: I/O error, dev loop1, sector 86000 -[3060841.768315] print_req_error: I/O error, dev loop1, sector 20480 -[3060841.768491] print_req_error: I/O error, dev loop1, sector 20488 -[3060842.411262] print_req_error: I/O error, dev loop1, sector 5300096 -[3060842.411418] print_req_error: I/O error, dev loop1, sector 5300208 -[3060899.976945] print_req_error: 54 callbacks suppressed -[3060899.976946] print_req_error: I/O error, dev loop1, sector 9494400 -[3060899.977025] print_req_error: I/O error, dev loop1, sector 9494616 -[3060899.977059] print_req_error: I/O error, dev loop1, sector 5300224 -[3060899.977126] print_req_error: I/O error, dev loop1, sector 5300232 -[3060900.096652] print_req_error: I/O error, dev loop1, sector 85888 -[3060900.096809] print_req_error: I/O error, dev loop1, sector 86000 -[3060900.096951] print_req_error: I/O error, dev loop1, sector 20480 -[3060900.097041] print_req_error: I/O error, dev loop1, sector 20488 -[3060900.146757] print_req_error: I/O error, dev loop1, sector 5300096 -[3060900.146899] print_req_error: I/O error, dev loop1, sector 5300208 -[3082443.106383] print_req_error: 54 callbacks suppressed -[3082443.106384] print_req_error: I/O error, dev loop1, sector 9494400 -[3082443.106624] print_req_error: I/O error, dev loop1, sector 9494616 -[3082443.106675] print_req_error: I/O error, dev loop1, sector 5300224 -[3082443.106775] print_req_error: I/O error, dev loop1, sector 5300232 -[3082443.137001] print_req_error: I/O error, dev loop1, sector 85888 -[3082443.137142] print_req_error: I/O error, dev loop1, sector 86000 -[3082443.137226] print_req_error: I/O error, dev loop1, sector 20480 -[3082443.137362] print_req_error: I/O error, dev loop1, sector 20488 -[3082443.165586] print_req_error: I/O error, dev loop1, sector 5300096 -[3082443.165740] print_req_error: I/O error, dev loop1, sector 5300208 -[3082532.530318] print_req_error: 54 callbacks suppressed -[3082532.530320] print_req_error: I/O error, dev loop1, sector 9494400 -[3082532.530467] print_req_error: I/O error, dev loop1, sector 9494616 -[3082532.530524] print_req_error: I/O error, dev loop1, sector 5300224 -[3082532.530615] print_req_error: I/O error, dev loop1, sector 5300232 -[3082532.576196] print_req_error: I/O error, dev loop1, sector 85888 -[3082532.576332] print_req_error: I/O error, dev loop1, sector 86000 -[3082532.576466] print_req_error: I/O error, dev loop1, sector 20480 -[3082532.576605] print_req_error: I/O error, dev loop1, sector 20488 -[3082532.586767] print_req_error: I/O error, dev loop1, sector 5300096 -[3082532.586859] print_req_error: I/O error, dev loop1, sector 5300208 -[3104039.311075] print_req_error: 54 callbacks suppressed -[3104039.311077] print_req_error: I/O error, dev loop1, sector 9494400 -[3104039.311310] print_req_error: I/O error, dev loop1, sector 9494616 -[3104039.311374] print_req_error: I/O error, dev loop1, sector 5300224 -[3104039.311472] print_req_error: I/O error, dev loop1, sector 5300232 -[3104039.371578] print_req_error: I/O error, dev loop1, sector 85888 -[3104039.371733] print_req_error: I/O error, dev loop1, sector 86000 -[3104039.371812] print_req_error: I/O error, dev loop1, sector 20480 -[3104039.371954] print_req_error: I/O error, dev loop1, sector 20488 -[3104039.382318] print_req_error: I/O error, dev loop1, sector 5300096 -[3104039.382479] print_req_error: I/O error, dev loop1, sector 5300208 -[3104096.896355] print_req_error: 54 callbacks suppressed -[3104096.896357] print_req_error: I/O error, dev loop1, sector 9494400 -[3104096.896446] print_req_error: I/O error, dev loop1, sector 9494616 -[3104096.896509] print_req_error: I/O error, dev loop1, sector 5300224 -[3104096.896549] print_req_error: I/O error, dev loop1, sector 5300232 -[3104096.948990] print_req_error: I/O error, dev loop1, sector 85888 -[3104096.949140] print_req_error: I/O error, dev loop1, sector 86000 -[3104096.949290] print_req_error: I/O error, dev loop1, sector 20480 -[3104096.949443] print_req_error: I/O error, dev loop1, sector 20488 -[3104096.959393] print_req_error: I/O error, dev loop1, sector 5300096 -[3104096.959539] print_req_error: I/O error, dev loop1, sector 5300208 -[3125636.865105] print_req_error: 54 callbacks suppressed -[3125636.865106] print_req_error: I/O error, dev loop1, sector 9494400 -[3125636.865313] print_req_error: I/O error, dev loop1, sector 9494616 -[3125636.865373] print_req_error: I/O error, dev loop1, sector 5300224 -[3125636.865509] print_req_error: I/O error, dev loop1, sector 5300232 -[3125636.923574] print_req_error: I/O error, dev loop1, sector 85888 -[3125636.923650] print_req_error: I/O error, dev loop1, sector 86000 -[3125636.923685] print_req_error: I/O error, dev loop1, sector 20480 -[3125636.923731] print_req_error: I/O error, dev loop1, sector 20488 -[3125636.934304] print_req_error: I/O error, dev loop1, sector 5300096 -[3125636.934374] print_req_error: I/O error, dev loop1, sector 5300208 -[3125692.305122] print_req_error: 54 callbacks suppressed -[3125692.305123] print_req_error: I/O error, dev loop1, sector 9494400 -[3125692.305231] print_req_error: I/O error, dev loop1, sector 9494616 -[3125692.305289] print_req_error: I/O error, dev loop1, sector 5300224 -[3125692.305400] print_req_error: I/O error, dev loop1, sector 5300232 -[3125692.394529] print_req_error: I/O error, dev loop1, sector 85888 -[3125692.394675] print_req_error: I/O error, dev loop1, sector 86000 -[3125692.394821] print_req_error: I/O error, dev loop1, sector 20480 -[3125692.394965] print_req_error: I/O error, dev loop1, sector 20488 -[3125692.421724] print_req_error: I/O error, dev loop1, sector 5300096 -[3125692.421867] print_req_error: I/O error, dev loop1, sector 5300208 -[3147235.729527] print_req_error: 54 callbacks suppressed -[3147235.729528] print_req_error: I/O error, dev loop1, sector 9494400 -[3147235.729767] print_req_error: I/O error, dev loop1, sector 9494616 -[3147235.729843] print_req_error: I/O error, dev loop1, sector 5300224 -[3147235.729952] print_req_error: I/O error, dev loop1, sector 5300232 -[3147235.779882] print_req_error: I/O error, dev loop1, sector 85888 -[3147235.780039] print_req_error: I/O error, dev loop1, sector 86000 -[3147235.780126] print_req_error: I/O error, dev loop1, sector 20480 -[3147235.780277] print_req_error: I/O error, dev loop1, sector 20488 -[3147235.790471] print_req_error: I/O error, dev loop1, sector 5300096 -[3147235.790629] print_req_error: I/O error, dev loop1, sector 5300208 -[3147295.513257] print_req_error: 54 callbacks suppressed -[3147295.513259] print_req_error: I/O error, dev loop1, sector 9494400 -[3147295.513342] print_req_error: I/O error, dev loop1, sector 9494616 -[3147295.513376] print_req_error: I/O error, dev loop1, sector 5300224 -[3147295.513444] print_req_error: I/O error, dev loop1, sector 5300232 -[3147295.680616] print_req_error: I/O error, dev loop1, sector 85888 -[3147295.680774] print_req_error: I/O error, dev loop1, sector 86000 -[3147295.680930] print_req_error: I/O error, dev loop1, sector 20480 -[3147295.681012] print_req_error: I/O error, dev loop1, sector 20488 -[3147295.738432] print_req_error: I/O error, dev loop1, sector 5300096 -[3147295.738577] print_req_error: I/O error, dev loop1, sector 5300208 -[3168835.116700] print_req_error: 54 callbacks suppressed -[3168835.116701] print_req_error: I/O error, dev loop1, sector 9494400 -[3168835.116966] print_req_error: I/O error, dev loop1, sector 9494616 -[3168835.117037] print_req_error: I/O error, dev loop1, sector 5300224 -[3168835.117134] print_req_error: I/O error, dev loop1, sector 5300232 -[3168835.178088] print_req_error: I/O error, dev loop1, sector 85888 -[3168835.178251] print_req_error: I/O error, dev loop1, sector 86000 -[3168835.178340] print_req_error: I/O error, dev loop1, sector 20480 -[3168835.178488] print_req_error: I/O error, dev loop1, sector 20488 -[3168835.188297] print_req_error: I/O error, dev loop1, sector 5300096 -[3168835.188457] print_req_error: I/O error, dev loop1, sector 5300208 -[3168891.869300] print_req_error: 54 callbacks suppressed -[3168891.869302] print_req_error: I/O error, dev loop1, sector 9494400 -[3168891.869397] print_req_error: I/O error, dev loop1, sector 9494616 -[3168891.869426] print_req_error: I/O error, dev loop1, sector 5300224 -[3168891.869477] print_req_error: I/O error, dev loop1, sector 5300232 -[3168891.921766] print_req_error: I/O error, dev loop1, sector 85888 -[3168891.921900] print_req_error: I/O error, dev loop1, sector 86000 -[3168891.922033] print_req_error: I/O error, dev loop1, sector 20480 -[3168891.922202] print_req_error: I/O error, dev loop1, sector 20488 -[3168891.932414] print_req_error: I/O error, dev loop1, sector 5300096 -[3168891.932579] print_req_error: I/O error, dev loop1, sector 5300208 -[3190434.647128] print_req_error: 54 callbacks suppressed -[3190434.647130] print_req_error: I/O error, dev loop1, sector 9494400 -[3190434.647402] print_req_error: I/O error, dev loop1, sector 9494616 -[3190434.647479] print_req_error: I/O error, dev loop1, sector 5300224 -[3190434.647616] print_req_error: I/O error, dev loop1, sector 5300232 -[3190434.706983] print_req_error: I/O error, dev loop1, sector 85888 -[3190434.707148] print_req_error: I/O error, dev loop1, sector 86000 -[3190434.707236] print_req_error: I/O error, dev loop1, sector 20480 -[3190434.707389] print_req_error: I/O error, dev loop1, sector 20488 -[3190434.717429] print_req_error: I/O error, dev loop1, sector 5300096 -[3190434.717596] print_req_error: I/O error, dev loop1, sector 5300208 -[3190493.793657] print_req_error: 54 callbacks suppressed -[3190493.793658] print_req_error: I/O error, dev loop1, sector 9494400 -[3190493.793764] print_req_error: I/O error, dev loop1, sector 9494616 -[3190493.793822] print_req_error: I/O error, dev loop1, sector 5300224 -[3190493.793861] print_req_error: I/O error, dev loop1, sector 5300232 -[3190493.828428] print_req_error: I/O error, dev loop1, sector 85888 -[3190493.828571] print_req_error: I/O error, dev loop1, sector 86000 -[3190493.828649] print_req_error: I/O error, dev loop1, sector 20480 -[3190493.828792] print_req_error: I/O error, dev loop1, sector 20488 -[3190493.872480] print_req_error: I/O error, dev loop1, sector 5300096 -[3190493.872616] print_req_error: I/O error, dev loop1, sector 5300208 -[3212038.731204] print_req_error: 54 callbacks suppressed -[3212038.731206] print_req_error: I/O error, dev loop1, sector 9494400 -[3212038.731479] print_req_error: I/O error, dev loop1, sector 9494616 -[3212038.731563] print_req_error: I/O error, dev loop1, sector 5300224 -[3212038.731695] print_req_error: I/O error, dev loop1, sector 5300232 -[3212038.793278] print_req_error: I/O error, dev loop1, sector 85888 -[3212038.793420] print_req_error: I/O error, dev loop1, sector 86000 -[3212038.793561] print_req_error: I/O error, dev loop1, sector 20480 -[3212038.793709] print_req_error: I/O error, dev loop1, sector 20488 -[3212038.803782] print_req_error: I/O error, dev loop1, sector 5300096 -[3212038.803924] print_req_error: I/O error, dev loop1, sector 5300208 -[3212096.443414] print_req_error: 54 callbacks suppressed -[3212096.443416] print_req_error: I/O error, dev loop1, sector 9494400 -[3212096.443548] print_req_error: I/O error, dev loop1, sector 9494616 -[3212096.443648] print_req_error: I/O error, dev loop1, sector 5300224 -[3212096.443706] print_req_error: I/O error, dev loop1, sector 5300232 -[3212096.492853] print_req_error: I/O error, dev loop1, sector 85888 -[3212096.492995] print_req_error: I/O error, dev loop1, sector 86000 -[3212096.493135] print_req_error: I/O error, dev loop1, sector 20480 -[3212096.493274] print_req_error: I/O error, dev loop1, sector 20488 -[3212096.503336] print_req_error: I/O error, dev loop1, sector 5300096 -[3212096.503478] print_req_error: I/O error, dev loop1, sector 5300208 -[3233640.342726] print_req_error: 54 callbacks suppressed -[3233640.342728] print_req_error: I/O error, dev loop1, sector 9494400 -[3233640.342956] print_req_error: I/O error, dev loop1, sector 9494616 -[3233640.343021] print_req_error: I/O error, dev loop1, sector 5300224 -[3233640.343150] print_req_error: I/O error, dev loop1, sector 5300232 -[3233640.518237] print_req_error: I/O error, dev loop1, sector 85888 -[3233640.518422] print_req_error: I/O error, dev loop1, sector 86000 -[3233640.518568] print_req_error: I/O error, dev loop1, sector 20480 -[3233640.518812] print_req_error: I/O error, dev loop1, sector 20488 -[3233640.605979] print_req_error: I/O error, dev loop1, sector 5300096 -[3233640.606127] print_req_error: I/O error, dev loop1, sector 5300208 -[3233698.158090] print_req_error: 54 callbacks suppressed -[3233698.158091] print_req_error: I/O error, dev loop1, sector 9494400 -[3233698.158176] print_req_error: I/O error, dev loop1, sector 9494616 -[3233698.158209] print_req_error: I/O error, dev loop1, sector 5300224 -[3233698.158277] print_req_error: I/O error, dev loop1, sector 5300232 -[3233698.173031] print_req_error: I/O error, dev loop1, sector 85888 -[3233698.173177] print_req_error: I/O error, dev loop1, sector 86000 -[3233698.173225] print_req_error: I/O error, dev loop1, sector 20480 -[3233698.173369] print_req_error: I/O error, dev loop1, sector 20488 -[3233698.178751] print_req_error: I/O error, dev loop1, sector 5300096 -[3233698.178856] print_req_error: I/O error, dev loop1, sector 5300208 -[3255236.883197] print_req_error: 54 callbacks suppressed -[3255236.883198] print_req_error: I/O error, dev loop1, sector 9494400 -[3255236.883439] print_req_error: I/O error, dev loop1, sector 9494616 -[3255236.883506] print_req_error: I/O error, dev loop1, sector 5300224 -[3255236.883637] print_req_error: I/O error, dev loop1, sector 5300232 -[3255236.928203] print_req_error: I/O error, dev loop1, sector 85888 -[3255236.928306] print_req_error: I/O error, dev loop1, sector 86000 -[3255236.928385] print_req_error: I/O error, dev loop1, sector 20480 -[3255236.928541] print_req_error: I/O error, dev loop1, sector 20488 -[3255236.938857] print_req_error: I/O error, dev loop1, sector 5300096 -[3255236.939005] print_req_error: I/O error, dev loop1, sector 5300208 -[3255296.185782] print_req_error: 54 callbacks suppressed -[3255296.185784] print_req_error: I/O error, dev loop1, sector 9494400 -[3255296.185944] print_req_error: I/O error, dev loop1, sector 9494616 -[3255296.186017] print_req_error: I/O error, dev loop1, sector 5300224 -[3255296.186151] print_req_error: I/O error, dev loop1, sector 5300232 -[3255296.250069] print_req_error: I/O error, dev loop1, sector 85888 -[3255296.250211] print_req_error: I/O error, dev loop1, sector 86000 -[3255296.250305] print_req_error: I/O error, dev loop1, sector 20480 -[3255296.250457] print_req_error: I/O error, dev loop1, sector 20488 -[3255296.260370] print_req_error: I/O error, dev loop1, sector 5300096 -[3255296.260534] print_req_error: I/O error, dev loop1, sector 5300208 -[3276838.471936] print_req_error: 54 callbacks suppressed -[3276838.471939] print_req_error: I/O error, dev loop1, sector 9494400 -[3276838.472171] print_req_error: I/O error, dev loop1, sector 9494616 -[3276838.472304] print_req_error: I/O error, dev loop1, sector 5300224 -[3276838.472437] print_req_error: I/O error, dev loop1, sector 5300232 -[3276838.740978] print_req_error: I/O error, dev loop1, sector 85888 -[3276838.741133] print_req_error: I/O error, dev loop1, sector 86000 -[3276838.741274] print_req_error: I/O error, dev loop1, sector 20480 -[3276838.741426] print_req_error: I/O error, dev loop1, sector 20488 -[3276838.906653] print_req_error: I/O error, dev loop1, sector 5300096 -[3276838.906795] print_req_error: I/O error, dev loop1, sector 5300208 -[3276899.295988] print_req_error: 54 callbacks suppressed -[3276899.295989] print_req_error: I/O error, dev loop1, sector 9494400 -[3276899.296131] print_req_error: I/O error, dev loop1, sector 9494616 -[3276899.296186] print_req_error: I/O error, dev loop1, sector 5300224 -[3276899.296273] print_req_error: I/O error, dev loop1, sector 5300232 -[3276899.329767] print_req_error: I/O error, dev loop1, sector 85888 -[3276899.329935] print_req_error: I/O error, dev loop1, sector 86000 -[3276899.330056] print_req_error: I/O error, dev loop1, sector 20480 -[3276899.330176] print_req_error: I/O error, dev loop1, sector 20488 -[3276899.373966] print_req_error: I/O error, dev loop1, sector 5300096 -[3276899.374116] print_req_error: I/O error, dev loop1, sector 5300208 -[3298435.022426] print_req_error: 54 callbacks suppressed -[3298435.022428] print_req_error: I/O error, dev loop1, sector 9494400 -[3298435.022607] print_req_error: I/O error, dev loop1, sector 9494616 -[3298435.022667] print_req_error: I/O error, dev loop1, sector 5300224 -[3298435.022696] print_req_error: I/O error, dev loop1, sector 5300232 -[3298435.318796] print_req_error: I/O error, dev loop1, sector 85888 -[3298435.318917] print_req_error: I/O error, dev loop1, sector 86000 -[3298435.319035] print_req_error: I/O error, dev loop1, sector 20480 -[3298435.319149] print_req_error: I/O error, dev loop1, sector 20488 -[3298435.535494] print_req_error: I/O error, dev loop1, sector 5300096 -[3298435.535815] print_req_error: I/O error, dev loop1, sector 5300208 -[3298491.816365] print_req_error: 54 callbacks suppressed -[3298491.816367] print_req_error: I/O error, dev loop1, sector 9494400 -[3298491.816450] print_req_error: I/O error, dev loop1, sector 9494616 -[3298491.816483] print_req_error: I/O error, dev loop1, sector 5300224 -[3298491.816550] print_req_error: I/O error, dev loop1, sector 5300232 -[3298491.916821] print_req_error: I/O error, dev loop1, sector 85888 -[3298491.916964] print_req_error: I/O error, dev loop1, sector 86000 -[3298491.917099] print_req_error: I/O error, dev loop1, sector 20480 -[3298491.917247] print_req_error: I/O error, dev loop1, sector 20488 -[3298491.936057] print_req_error: I/O error, dev loop1, sector 5300096 -[3298491.936199] print_req_error: I/O error, dev loop1, sector 5300208 -[3320038.084433] print_req_error: 54 callbacks suppressed -[3320038.084435] print_req_error: I/O error, dev loop1, sector 9494400 -[3320038.084655] print_req_error: I/O error, dev loop1, sector 9494616 -[3320038.084722] print_req_error: I/O error, dev loop1, sector 5300224 -[3320038.084869] print_req_error: I/O error, dev loop1, sector 5300232 -[3320038.211777] print_req_error: I/O error, dev loop1, sector 85888 -[3320038.211900] print_req_error: I/O error, dev loop1, sector 86000 -[3320038.212037] print_req_error: I/O error, dev loop1, sector 20480 -[3320038.212190] print_req_error: I/O error, dev loop1, sector 20488 -[3320038.314908] print_req_error: I/O error, dev loop1, sector 5300096 -[3320038.315029] print_req_error: I/O error, dev loop1, sector 5300208 -[3320096.933509] print_req_error: 54 callbacks suppressed -[3320096.933511] print_req_error: I/O error, dev loop1, sector 9494400 -[3320096.933668] print_req_error: I/O error, dev loop1, sector 9494616 -[3320096.933788] print_req_error: I/O error, dev loop1, sector 5300224 -[3320096.933900] print_req_error: I/O error, dev loop1, sector 5300232 -[3320096.935818] print_req_error: I/O error, dev loop1, sector 85888 -[3320096.935959] print_req_error: I/O error, dev loop1, sector 86000 -[3320096.936038] print_req_error: I/O error, dev loop1, sector 20480 -[3320096.936174] print_req_error: I/O error, dev loop1, sector 20488 -[3320096.937383] print_req_error: I/O error, dev loop1, sector 5300096 -[3320096.937483] print_req_error: I/O error, dev loop1, sector 5300208 -[3341636.090522] print_req_error: 54 callbacks suppressed -[3341636.090524] print_req_error: I/O error, dev loop1, sector 9494400 -[3341636.090771] print_req_error: I/O error, dev loop1, sector 9494616 -[3341636.090837] print_req_error: I/O error, dev loop1, sector 5300224 -[3341636.090868] print_req_error: I/O error, dev loop1, sector 5300232 -[3341636.133664] print_req_error: I/O error, dev loop1, sector 85888 -[3341636.133794] print_req_error: I/O error, dev loop1, sector 86000 -[3341636.133862] print_req_error: I/O error, dev loop1, sector 20480 -[3341636.133979] print_req_error: I/O error, dev loop1, sector 20488 -[3341636.177474] print_req_error: I/O error, dev loop1, sector 5300096 -[3341636.177627] print_req_error: I/O error, dev loop1, sector 5300208 -[3341691.579292] print_req_error: 54 callbacks suppressed -[3341691.579293] print_req_error: I/O error, dev loop1, sector 9494400 -[3341691.579438] print_req_error: I/O error, dev loop1, sector 9494616 -[3341691.579499] print_req_error: I/O error, dev loop1, sector 5300224 -[3341691.579583] print_req_error: I/O error, dev loop1, sector 5300232 -[3341691.632909] print_req_error: I/O error, dev loop1, sector 85888 -[3341691.633053] print_req_error: I/O error, dev loop1, sector 86000 -[3341691.633157] print_req_error: I/O error, dev loop1, sector 20480 -[3341691.633306] print_req_error: I/O error, dev loop1, sector 20488 -[3341691.643725] print_req_error: I/O error, dev loop1, sector 5300096 -[3341691.643874] print_req_error: I/O error, dev loop1, sector 5300208 -[3363235.730879] print_req_error: 54 callbacks suppressed -[3363235.730881] print_req_error: I/O error, dev loop1, sector 9494400 -[3363235.731116] print_req_error: I/O error, dev loop1, sector 9494616 -[3363235.731181] print_req_error: I/O error, dev loop1, sector 5300224 -[3363235.731312] print_req_error: I/O error, dev loop1, sector 5300232 -[3363235.788840] print_req_error: I/O error, dev loop1, sector 85888 -[3363235.788996] print_req_error: I/O error, dev loop1, sector 86000 -[3363235.789108] print_req_error: I/O error, dev loop1, sector 20480 -[3363235.789210] print_req_error: I/O error, dev loop1, sector 20488 -[3363235.799471] print_req_error: I/O error, dev loop1, sector 5300096 -[3363235.799626] print_req_error: I/O error, dev loop1, sector 5300208 -[3363293.446109] print_req_error: 54 callbacks suppressed -[3363293.446111] print_req_error: I/O error, dev loop1, sector 9494400 -[3363293.446236] print_req_error: I/O error, dev loop1, sector 9494616 -[3363293.446300] print_req_error: I/O error, dev loop1, sector 5300224 -[3363293.446425] print_req_error: I/O error, dev loop1, sector 5300232 -[3363293.488553] print_req_error: I/O error, dev loop1, sector 85888 -[3363293.488691] print_req_error: I/O error, dev loop1, sector 86000 -[3363293.488766] print_req_error: I/O error, dev loop1, sector 20480 -[3363293.488838] print_req_error: I/O error, dev loop1, sector 20488 -[3363293.499132] print_req_error: I/O error, dev loop1, sector 5300096 -[3363293.499278] print_req_error: I/O error, dev loop1, sector 5300208 -[3384836.693947] print_req_error: 54 callbacks suppressed -[3384836.693949] print_req_error: I/O error, dev loop1, sector 9494400 -[3384836.694167] print_req_error: I/O error, dev loop1, sector 9494616 -[3384836.694233] print_req_error: I/O error, dev loop1, sector 5300224 -[3384836.694262] print_req_error: I/O error, dev loop1, sector 5300232 -[3384836.732692] print_req_error: I/O error, dev loop1, sector 85888 -[3384836.732846] print_req_error: I/O error, dev loop1, sector 86000 -[3384836.732929] print_req_error: I/O error, dev loop1, sector 20480 -[3384836.733092] print_req_error: I/O error, dev loop1, sector 20488 -[3384836.776373] print_req_error: I/O error, dev loop1, sector 5300096 -[3384836.776519] print_req_error: I/O error, dev loop1, sector 5300208 -[3384895.482130] print_req_error: 54 callbacks suppressed -[3384895.482131] print_req_error: I/O error, dev loop1, sector 9494400 -[3384895.482228] print_req_error: I/O error, dev loop1, sector 9494616 -[3384895.482336] print_req_error: I/O error, dev loop1, sector 5300224 -[3384895.482425] print_req_error: I/O error, dev loop1, sector 5300232 -[3384895.543162] print_req_error: I/O error, dev loop1, sector 85888 -[3384895.543316] print_req_error: I/O error, dev loop1, sector 86000 -[3384895.543398] print_req_error: I/O error, dev loop1, sector 20480 -[3384895.543544] print_req_error: I/O error, dev loop1, sector 20488 -[3384895.574684] print_req_error: I/O error, dev loop1, sector 5300096 -[3384895.574822] print_req_error: I/O error, dev loop1, sector 5300208 -[3406435.132607] print_req_error: 54 callbacks suppressed -[3406435.132609] print_req_error: I/O error, dev loop1, sector 9494400 -[3406435.132828] print_req_error: I/O error, dev loop1, sector 9494616 -[3406435.132888] print_req_error: I/O error, dev loop1, sector 5300224 -[3406435.132979] print_req_error: I/O error, dev loop1, sector 5300232 -[3406435.180273] print_req_error: I/O error, dev loop1, sector 85888 -[3406435.180447] print_req_error: I/O error, dev loop1, sector 86000 -[3406435.180530] print_req_error: I/O error, dev loop1, sector 20480 -[3406435.180675] print_req_error: I/O error, dev loop1, sector 20488 -[3406435.190406] print_req_error: I/O error, dev loop1, sector 5300096 -[3406435.190556] print_req_error: I/O error, dev loop1, sector 5300208 -[3406492.282656] print_req_error: 54 callbacks suppressed -[3406492.282658] print_req_error: I/O error, dev loop1, sector 9494400 -[3406492.282815] print_req_error: I/O error, dev loop1, sector 9494616 -[3406492.282879] print_req_error: I/O error, dev loop1, sector 5300224 -[3406492.282972] print_req_error: I/O error, dev loop1, sector 5300232 -[3406492.295191] print_req_error: I/O error, dev loop1, sector 85888 -[3406492.295259] print_req_error: I/O error, dev loop1, sector 86000 -[3406492.295321] print_req_error: I/O error, dev loop1, sector 20480 -[3406492.295350] print_req_error: I/O error, dev loop1, sector 20488 -[3406492.323633] print_req_error: I/O error, dev loop1, sector 5300096 -[3406492.323788] print_req_error: I/O error, dev loop1, sector 5300208 -[3428039.855980] print_req_error: 54 callbacks suppressed -[3428039.855982] print_req_error: I/O error, dev loop1, sector 9494400 -[3428039.856205] print_req_error: I/O error, dev loop1, sector 9494616 -[3428039.856271] print_req_error: I/O error, dev loop1, sector 5300224 -[3428039.856415] print_req_error: I/O error, dev loop1, sector 5300232 -[3428039.901772] print_req_error: I/O error, dev loop1, sector 85888 -[3428039.901925] print_req_error: I/O error, dev loop1, sector 86000 -[3428039.902023] print_req_error: I/O error, dev loop1, sector 20480 -[3428039.902164] print_req_error: I/O error, dev loop1, sector 20488 -[3428039.912366] print_req_error: I/O error, dev loop1, sector 5300096 -[3428039.912488] print_req_error: I/O error, dev loop1, sector 5300208 -[3428098.758644] print_req_error: 54 callbacks suppressed -[3428098.758646] print_req_error: I/O error, dev loop1, sector 9494400 -[3428098.758791] print_req_error: I/O error, dev loop1, sector 9494616 -[3428098.758847] print_req_error: I/O error, dev loop1, sector 5300224 -[3428098.758935] print_req_error: I/O error, dev loop1, sector 5300232 -[3428098.783757] print_req_error: I/O error, dev loop1, sector 85888 -[3428098.783943] print_req_error: I/O error, dev loop1, sector 86000 -[3428098.784045] print_req_error: I/O error, dev loop1, sector 20480 -[3428098.784234] print_req_error: I/O error, dev loop1, sector 20488 -[3428098.789716] print_req_error: I/O error, dev loop1, sector 5300096 -[3428098.789834] print_req_error: I/O error, dev loop1, sector 5300208 -[3449636.264452] print_req_error: 54 callbacks suppressed -[3449636.264453] print_req_error: I/O error, dev loop1, sector 9494400 -[3449636.264702] print_req_error: I/O error, dev loop1, sector 9494616 -[3449636.264779] print_req_error: I/O error, dev loop1, sector 5300224 -[3449636.264912] print_req_error: I/O error, dev loop1, sector 5300232 -[3449636.313883] print_req_error: I/O error, dev loop1, sector 85888 -[3449636.314044] print_req_error: I/O error, dev loop1, sector 86000 -[3449636.314136] print_req_error: I/O error, dev loop1, sector 20480 -[3449636.314284] print_req_error: I/O error, dev loop1, sector 20488 -[3449636.324257] print_req_error: I/O error, dev loop1, sector 5300096 -[3449636.324418] print_req_error: I/O error, dev loop1, sector 5300208 -[3449696.828170] print_req_error: 54 callbacks suppressed -[3449696.828172] print_req_error: I/O error, dev loop1, sector 9494400 -[3449696.828299] print_req_error: I/O error, dev loop1, sector 9494616 -[3449696.828362] print_req_error: I/O error, dev loop1, sector 5300224 -[3449696.828486] print_req_error: I/O error, dev loop1, sector 5300232 -[3449696.851511] print_req_error: I/O error, dev loop1, sector 85888 -[3449696.851634] print_req_error: I/O error, dev loop1, sector 86000 -[3449696.851809] print_req_error: I/O error, dev loop1, sector 20480 -[3449696.851943] print_req_error: I/O error, dev loop1, sector 20488 -[3449696.856902] print_req_error: I/O error, dev loop1, sector 5300096 -[3449696.857046] print_req_error: I/O error, dev loop1, sector 5300208 -[3471234.099525] print_req_error: 54 callbacks suppressed -[3471234.099526] print_req_error: I/O error, dev loop1, sector 9494400 -[3471234.099700] print_req_error: I/O error, dev loop1, sector 9494616 -[3471234.099763] print_req_error: I/O error, dev loop1, sector 5300224 -[3471234.099793] print_req_error: I/O error, dev loop1, sector 5300232 -[3471234.146698] print_req_error: I/O error, dev loop1, sector 85888 -[3471234.146887] print_req_error: I/O error, dev loop1, sector 86000 -[3471234.146984] print_req_error: I/O error, dev loop1, sector 20480 -[3471234.147138] print_req_error: I/O error, dev loop1, sector 20488 -[3471234.157523] print_req_error: I/O error, dev loop1, sector 5300096 -[3471234.157703] print_req_error: I/O error, dev loop1, sector 5300208 -[3471290.557099] print_req_error: 54 callbacks suppressed -[3471290.557101] print_req_error: I/O error, dev loop1, sector 9494400 -[3471290.557213] print_req_error: I/O error, dev loop1, sector 9494616 -[3471290.557273] print_req_error: I/O error, dev loop1, sector 5300224 -[3471290.557374] print_req_error: I/O error, dev loop1, sector 5300232 -[3471290.629285] print_req_error: I/O error, dev loop1, sector 85888 -[3471290.629452] print_req_error: I/O error, dev loop1, sector 86000 -[3471290.629535] print_req_error: I/O error, dev loop1, sector 20480 -[3471290.629694] print_req_error: I/O error, dev loop1, sector 20488 -[3471290.634437] print_req_error: I/O error, dev loop1, sector 5300096 -[3471290.634595] print_req_error: I/O error, dev loop1, sector 5300208 -[3492832.593738] print_req_error: 54 callbacks suppressed -[3492832.593739] print_req_error: I/O error, dev loop1, sector 9494400 -[3492832.593940] print_req_error: I/O error, dev loop1, sector 9494616 -[3492832.594005] print_req_error: I/O error, dev loop1, sector 5300224 -[3492832.594106] print_req_error: I/O error, dev loop1, sector 5300232 -[3492832.663214] print_req_error: I/O error, dev loop1, sector 85888 -[3492832.663368] print_req_error: I/O error, dev loop1, sector 86000 -[3492832.663502] print_req_error: I/O error, dev loop1, sector 20480 -[3492832.663662] print_req_error: I/O error, dev loop1, sector 20488 -[3492832.673451] print_req_error: I/O error, dev loop1, sector 5300096 -[3492832.673599] print_req_error: I/O error, dev loop1, sector 5300208 -[3492892.414411] print_req_error: 54 callbacks suppressed -[3492892.414412] print_req_error: I/O error, dev loop1, sector 9494400 -[3492892.414482] print_req_error: I/O error, dev loop1, sector 9494616 -[3492892.414515] print_req_error: I/O error, dev loop1, sector 5300224 -[3492892.414556] print_req_error: I/O error, dev loop1, sector 5300232 -[3492892.484869] print_req_error: I/O error, dev loop1, sector 85888 -[3492892.485048] print_req_error: I/O error, dev loop1, sector 86000 -[3492892.485121] print_req_error: I/O error, dev loop1, sector 20480 -[3492892.485183] print_req_error: I/O error, dev loop1, sector 20488 -[3492892.495398] print_req_error: I/O error, dev loop1, sector 5300096 -[3492892.495543] print_req_error: I/O error, dev loop1, sector 5300208 -[3513970.222026] linhelmk unloading -[3513970.372701] linhelmk exit done -[3514270.531959] linhelmk loaded -[3514270.531960] This linhelmk was built with the IMA EXPERIMENT! -[3514270.558456] helm_ima_bridge_init() succeeded - IMA experiment running. -[3514270.559585] message queue initialized in 1024 pages of shared memory -[3514270.559797] cdev created: /dev/helm -[3514270.594885] probe is now in state 1 (was 0) -[3514270.600443] probe <__x64_sys_execve> is now in state 1 (was 0) -[3514270.605802] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3514270.611368] probe is now in state 1 (was 0) -[3514270.616777] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3514270.622401] probe is now in state 1 (was 0) -[3514270.628037] probe is now in state 1 (was 0) -[3514270.633676] probe is now in state 1 (was 0) -[3514270.639159] probe is now in state 1 (was 0) -[3514270.644901] probe is now in state 1 (was 0) -[3514270.644903] nf_hook 12 is now in state 1 (was 0) -[3514270.644904] nf_hook 13 is now in state 1 (was 0) -[3514270.644905] nf_hook 14 is now in state 1 (was 0) -[3514270.644906] nf_hook 15 is now in state 1 (was 0) -[3514270.644906] /dev/helm created; linhelm init done -[3514436.029562] print_req_error: 54 callbacks suppressed -[3514436.029563] print_req_error: I/O error, dev loop1, sector 9494400 -[3514436.029758] print_req_error: I/O error, dev loop1, sector 9494616 -[3514436.029821] print_req_error: I/O error, dev loop1, sector 5300224 -[3514436.029922] print_req_error: I/O error, dev loop1, sector 5300232 -[3514436.077270] print_req_error: I/O error, dev loop1, sector 85888 -[3514436.077416] print_req_error: I/O error, dev loop1, sector 86000 -[3514436.077506] print_req_error: I/O error, dev loop1, sector 20480 -[3514436.077650] print_req_error: I/O error, dev loop1, sector 20488 -[3514436.087779] print_req_error: I/O error, dev loop1, sector 5300096 -[3514436.087934] print_req_error: I/O error, dev loop1, sector 5300208 -[3514494.640068] print_req_error: 54 callbacks suppressed -[3514494.640069] print_req_error: I/O error, dev loop1, sector 9494400 -[3514494.640187] print_req_error: I/O error, dev loop1, sector 9494616 -[3514494.640249] print_req_error: I/O error, dev loop1, sector 5300224 -[3514494.640345] print_req_error: I/O error, dev loop1, sector 5300232 -[3514494.659407] print_req_error: I/O error, dev loop1, sector 85888 -[3514494.659525] print_req_error: I/O error, dev loop1, sector 86000 -[3514494.659658] print_req_error: I/O error, dev loop1, sector 20480 -[3514494.659787] print_req_error: I/O error, dev loop1, sector 20488 -[3514494.664686] print_req_error: I/O error, dev loop1, sector 5300096 -[3514494.664800] print_req_error: I/O error, dev loop1, sector 5300208 -[3536034.474176] print_req_error: 54 callbacks suppressed -[3536034.474178] print_req_error: I/O error, dev loop1, sector 9494400 -[3536034.474426] print_req_error: I/O error, dev loop1, sector 9494616 -[3536034.474484] print_req_error: I/O error, dev loop1, sector 5300224 -[3536034.474625] print_req_error: I/O error, dev loop1, sector 5300232 -[3536034.512857] print_req_error: I/O error, dev loop1, sector 85888 -[3536034.513017] print_req_error: I/O error, dev loop1, sector 86000 -[3536034.513105] print_req_error: I/O error, dev loop1, sector 20480 -[3536034.513250] print_req_error: I/O error, dev loop1, sector 20488 -[3536034.523547] print_req_error: I/O error, dev loop1, sector 5300096 -[3536034.523667] print_req_error: I/O error, dev loop1, sector 5300208 -[3536093.383893] print_req_error: 54 callbacks suppressed -[3536093.383894] print_req_error: I/O error, dev loop1, sector 9494400 -[3536093.384044] print_req_error: I/O error, dev loop1, sector 9494616 -[3536093.384108] print_req_error: I/O error, dev loop1, sector 5300224 -[3536093.384234] print_req_error: I/O error, dev loop1, sector 5300232 -[3536093.394824] print_req_error: I/O error, dev loop1, sector 85888 -[3536093.394896] print_req_error: I/O error, dev loop1, sector 86000 -[3536093.394929] print_req_error: I/O error, dev loop1, sector 20480 -[3536093.395050] print_req_error: I/O error, dev loop1, sector 20488 -[3536093.400440] print_req_error: I/O error, dev loop1, sector 5300096 -[3536093.400539] print_req_error: I/O error, dev loop1, sector 5300208 -[3557632.921211] print_req_error: 54 callbacks suppressed -[3557632.921213] print_req_error: I/O error, dev loop1, sector 9494400 -[3557632.921440] print_req_error: I/O error, dev loop1, sector 9494616 -[3557632.921503] print_req_error: I/O error, dev loop1, sector 5300224 -[3557632.921542] print_req_error: I/O error, dev loop1, sector 5300232 -[3557632.966902] print_req_error: I/O error, dev loop1, sector 85888 -[3557632.967029] print_req_error: I/O error, dev loop1, sector 86000 -[3557632.967207] print_req_error: I/O error, dev loop1, sector 20480 -[3557632.967365] print_req_error: I/O error, dev loop1, sector 20488 -[3557632.977118] print_req_error: I/O error, dev loop1, sector 5300096 -[3557632.977246] print_req_error: I/O error, dev loop1, sector 5300208 -[3557693.281736] print_req_error: 54 callbacks suppressed -[3557693.281738] print_req_error: I/O error, dev loop1, sector 9494400 -[3557693.281866] print_req_error: I/O error, dev loop1, sector 9494616 -[3557693.281943] print_req_error: I/O error, dev loop1, sector 5300224 -[3557693.282047] print_req_error: I/O error, dev loop1, sector 5300232 -[3557693.304203] print_req_error: I/O error, dev loop1, sector 85888 -[3557693.304339] print_req_error: I/O error, dev loop1, sector 86000 -[3557693.304624] print_req_error: I/O error, dev loop1, sector 20480 -[3557693.304748] print_req_error: I/O error, dev loop1, sector 20488 -[3557693.309956] print_req_error: I/O error, dev loop1, sector 5300096 -[3557693.310112] print_req_error: I/O error, dev loop1, sector 5300208 -[3579235.121495] print_req_error: 54 callbacks suppressed -[3579235.121497] print_req_error: I/O error, dev loop1, sector 9494400 -[3579235.121730] print_req_error: I/O error, dev loop1, sector 9494616 -[3579235.121795] print_req_error: I/O error, dev loop1, sector 5300224 -[3579235.121916] print_req_error: I/O error, dev loop1, sector 5300232 -[3579235.168119] print_req_error: I/O error, dev loop1, sector 85888 -[3579235.168270] print_req_error: I/O error, dev loop1, sector 86000 -[3579235.168401] print_req_error: I/O error, dev loop1, sector 20480 -[3579235.168513] print_req_error: I/O error, dev loop1, sector 20488 -[3579235.178392] print_req_error: I/O error, dev loop1, sector 5300096 -[3579235.178542] print_req_error: I/O error, dev loop1, sector 5300208 -[3579293.642549] print_req_error: 54 callbacks suppressed -[3579293.642550] print_req_error: I/O error, dev loop1, sector 9494400 -[3579293.642639] print_req_error: I/O error, dev loop1, sector 9494616 -[3579293.642708] print_req_error: I/O error, dev loop1, sector 5300224 -[3579293.642807] print_req_error: I/O error, dev loop1, sector 5300232 -[3579293.689796] print_req_error: I/O error, dev loop1, sector 85888 -[3579293.689905] print_req_error: I/O error, dev loop1, sector 86000 -[3579293.690027] print_req_error: I/O error, dev loop1, sector 20480 -[3579293.690114] print_req_error: I/O error, dev loop1, sector 20488 -[3579293.733610] print_req_error: I/O error, dev loop1, sector 5300096 -[3579293.733762] print_req_error: I/O error, dev loop1, sector 5300208 -[3600832.981532] print_req_error: 54 callbacks suppressed -[3600832.981534] print_req_error: I/O error, dev loop1, sector 9494400 -[3600832.981787] print_req_error: I/O error, dev loop1, sector 9494616 -[3600832.981859] print_req_error: I/O error, dev loop1, sector 5300224 -[3600832.981966] print_req_error: I/O error, dev loop1, sector 5300232 -[3600833.083414] print_req_error: I/O error, dev loop1, sector 85888 -[3600833.083566] print_req_error: I/O error, dev loop1, sector 86000 -[3600833.083714] print_req_error: I/O error, dev loop1, sector 20480 -[3600833.083815] print_req_error: I/O error, dev loop1, sector 20488 -[3600833.128503] print_req_error: I/O error, dev loop1, sector 5300096 -[3600833.128654] print_req_error: I/O error, dev loop1, sector 5300208 -[3600891.505895] print_req_error: 54 callbacks suppressed -[3600891.505896] print_req_error: I/O error, dev loop1, sector 9494400 -[3600891.506029] print_req_error: I/O error, dev loop1, sector 9494616 -[3600891.506102] print_req_error: I/O error, dev loop1, sector 5300224 -[3600891.506204] print_req_error: I/O error, dev loop1, sector 5300232 -[3600891.507979] print_req_error: I/O error, dev loop1, sector 85888 -[3600891.508089] print_req_error: I/O error, dev loop1, sector 86000 -[3600891.508191] print_req_error: I/O error, dev loop1, sector 20480 -[3600891.508353] print_req_error: I/O error, dev loop1, sector 20488 -[3600891.529160] print_req_error: I/O error, dev loop1, sector 5300096 -[3600891.529301] print_req_error: I/O error, dev loop1, sector 5300208 -[3622433.355127] print_req_error: 54 callbacks suppressed -[3622433.355129] print_req_error: I/O error, dev loop1, sector 9494400 -[3622433.355353] print_req_error: I/O error, dev loop1, sector 9494616 -[3622433.355416] print_req_error: I/O error, dev loop1, sector 5300224 -[3622433.355511] print_req_error: I/O error, dev loop1, sector 5300232 -[3622433.402877] print_req_error: I/O error, dev loop1, sector 85888 -[3622433.403069] print_req_error: I/O error, dev loop1, sector 86000 -[3622433.403217] print_req_error: I/O error, dev loop1, sector 20480 -[3622433.403305] print_req_error: I/O error, dev loop1, sector 20488 -[3622433.446888] print_req_error: I/O error, dev loop1, sector 5300096 -[3622433.447077] print_req_error: I/O error, dev loop1, sector 5300208 -[3622490.137640] print_req_error: 54 callbacks suppressed -[3622490.137642] print_req_error: I/O error, dev loop1, sector 9494400 -[3622490.137730] print_req_error: I/O error, dev loop1, sector 9494616 -[3622490.137792] print_req_error: I/O error, dev loop1, sector 5300224 -[3622490.137893] print_req_error: I/O error, dev loop1, sector 5300232 -[3622490.191787] print_req_error: I/O error, dev loop1, sector 85888 -[3622490.191944] print_req_error: I/O error, dev loop1, sector 86000 -[3622490.192032] print_req_error: I/O error, dev loop1, sector 20480 -[3622490.192184] print_req_error: I/O error, dev loop1, sector 20488 -[3622490.202024] print_req_error: I/O error, dev loop1, sector 5300096 -[3622490.202178] print_req_error: I/O error, dev loop1, sector 5300208 -[3644033.091601] print_req_error: 54 callbacks suppressed -[3644033.091602] print_req_error: I/O error, dev loop1, sector 9494400 -[3644033.091848] print_req_error: I/O error, dev loop1, sector 9494616 -[3644033.091913] print_req_error: I/O error, dev loop1, sector 5300224 -[3644033.092042] print_req_error: I/O error, dev loop1, sector 5300232 -[3644033.131541] print_req_error: I/O error, dev loop1, sector 85888 -[3644033.131696] print_req_error: I/O error, dev loop1, sector 86000 -[3644033.131789] print_req_error: I/O error, dev loop1, sector 20480 -[3644033.131940] print_req_error: I/O error, dev loop1, sector 20488 -[3644033.141820] print_req_error: I/O error, dev loop1, sector 5300096 -[3644033.141974] print_req_error: I/O error, dev loop1, sector 5300208 -[3644091.041431] print_req_error: 54 callbacks suppressed -[3644091.041432] print_req_error: I/O error, dev loop1, sector 9494400 -[3644091.041593] print_req_error: I/O error, dev loop1, sector 9494616 -[3644091.041669] print_req_error: I/O error, dev loop1, sector 5300224 -[3644091.041778] print_req_error: I/O error, dev loop1, sector 5300232 -[3644091.068820] print_req_error: I/O error, dev loop1, sector 85888 -[3644091.068987] print_req_error: I/O error, dev loop1, sector 86000 -[3644091.069068] print_req_error: I/O error, dev loop1, sector 20480 -[3644091.069137] print_req_error: I/O error, dev loop1, sector 20488 -[3644091.074682] print_req_error: I/O error, dev loop1, sector 5300096 -[3644091.074825] print_req_error: I/O error, dev loop1, sector 5300208 -[3665632.897935] print_req_error: 54 callbacks suppressed -[3665632.897936] print_req_error: I/O error, dev loop1, sector 9494400 -[3665632.898163] print_req_error: I/O error, dev loop1, sector 9494616 -[3665632.898230] print_req_error: I/O error, dev loop1, sector 5300224 -[3665632.898339] print_req_error: I/O error, dev loop1, sector 5300232 -[3665632.950709] print_req_error: I/O error, dev loop1, sector 85888 -[3665632.950857] print_req_error: I/O error, dev loop1, sector 86000 -[3665632.951006] print_req_error: I/O error, dev loop1, sector 20480 -[3665632.951148] print_req_error: I/O error, dev loop1, sector 20488 -[3665632.961268] print_req_error: I/O error, dev loop1, sector 5300096 -[3665632.961426] print_req_error: I/O error, dev loop1, sector 5300208 -[3665690.294882] print_req_error: 54 callbacks suppressed -[3665690.294884] print_req_error: I/O error, dev loop1, sector 9494400 -[3665690.294991] print_req_error: I/O error, dev loop1, sector 9494616 -[3665690.295047] print_req_error: I/O error, dev loop1, sector 5300224 -[3665690.295173] print_req_error: I/O error, dev loop1, sector 5300232 -[3665690.540402] print_req_error: I/O error, dev loop1, sector 85888 -[3665690.540544] print_req_error: I/O error, dev loop1, sector 86000 -[3665690.540630] print_req_error: I/O error, dev loop1, sector 20480 -[3665690.540771] print_req_error: I/O error, dev loop1, sector 20488 -[3665690.838535] print_req_error: I/O error, dev loop1, sector 5300096 -[3665690.838680] print_req_error: I/O error, dev loop1, sector 5300208 -[3687234.093014] print_req_error: 54 callbacks suppressed -[3687234.093016] print_req_error: I/O error, dev loop1, sector 9494400 -[3687234.093226] print_req_error: I/O error, dev loop1, sector 9494616 -[3687234.093295] print_req_error: I/O error, dev loop1, sector 5300224 -[3687234.093422] print_req_error: I/O error, dev loop1, sector 5300232 -[3687234.132722] print_req_error: I/O error, dev loop1, sector 85888 -[3687234.132891] print_req_error: I/O error, dev loop1, sector 86000 -[3687234.132986] print_req_error: I/O error, dev loop1, sector 20480 -[3687234.133143] print_req_error: I/O error, dev loop1, sector 20488 -[3687234.143013] print_req_error: I/O error, dev loop1, sector 5300096 -[3687234.143181] print_req_error: I/O error, dev loop1, sector 5300208 -[3687295.446239] print_req_error: 54 callbacks suppressed -[3687295.446240] print_req_error: I/O error, dev loop1, sector 9494400 -[3687295.446396] print_req_error: I/O error, dev loop1, sector 9494616 -[3687295.446460] print_req_error: I/O error, dev loop1, sector 5300224 -[3687295.446586] print_req_error: I/O error, dev loop1, sector 5300232 -[3687295.487592] print_req_error: I/O error, dev loop1, sector 85888 -[3687295.487751] print_req_error: I/O error, dev loop1, sector 86000 -[3687295.487839] print_req_error: I/O error, dev loop1, sector 20480 -[3687295.487989] print_req_error: I/O error, dev loop1, sector 20488 -[3687295.531375] print_req_error: I/O error, dev loop1, sector 5300096 -[3687295.531525] print_req_error: I/O error, dev loop1, sector 5300208 -[3708827.921260] print_req_error: 54 callbacks suppressed -[3708827.921262] print_req_error: I/O error, dev loop1, sector 9494400 -[3708827.921465] print_req_error: I/O error, dev loop1, sector 9494616 -[3708827.921531] print_req_error: I/O error, dev loop1, sector 5300224 -[3708827.921660] print_req_error: I/O error, dev loop1, sector 5300232 -[3708828.282852] print_req_error: I/O error, dev loop1, sector 85888 -[3708828.283014] print_req_error: I/O error, dev loop1, sector 86000 -[3708828.283095] print_req_error: I/O error, dev loop1, sector 20480 -[3708828.283239] print_req_error: I/O error, dev loop1, sector 20488 -[3708828.326843] print_req_error: I/O error, dev loop1, sector 5300096 -[3708828.327000] print_req_error: I/O error, dev loop1, sector 5300208 -[3708886.186873] print_req_error: 54 callbacks suppressed -[3708886.186874] print_req_error: I/O error, dev loop1, sector 9494400 -[3708886.186989] print_req_error: I/O error, dev loop1, sector 9494616 -[3708886.187052] print_req_error: I/O error, dev loop1, sector 5300224 -[3708886.187176] print_req_error: I/O error, dev loop1, sector 5300232 -[3708886.211531] print_req_error: I/O error, dev loop1, sector 85888 -[3708886.211665] print_req_error: I/O error, dev loop1, sector 86000 -[3708886.211802] print_req_error: I/O error, dev loop1, sector 20480 -[3708886.211880] print_req_error: I/O error, dev loop1, sector 20488 -[3708886.247357] print_req_error: I/O error, dev loop1, sector 5300096 -[3708886.247504] print_req_error: I/O error, dev loop1, sector 5300208 -[3730428.594615] print_req_error: 54 callbacks suppressed -[3730428.594617] print_req_error: I/O error, dev loop1, sector 9494400 -[3730428.594808] print_req_error: I/O error, dev loop1, sector 9494616 -[3730428.594870] print_req_error: I/O error, dev loop1, sector 5300224 -[3730428.594900] print_req_error: I/O error, dev loop1, sector 5300232 -[3730428.633135] print_req_error: I/O error, dev loop1, sector 85888 -[3730428.633230] print_req_error: I/O error, dev loop1, sector 86000 -[3730428.633302] print_req_error: I/O error, dev loop1, sector 20480 -[3730428.633445] print_req_error: I/O error, dev loop1, sector 20488 -[3730428.643601] print_req_error: I/O error, dev loop1, sector 5300096 -[3730428.643752] print_req_error: I/O error, dev loop1, sector 5300208 -[3730487.381141] print_req_error: 54 callbacks suppressed -[3730487.381143] print_req_error: I/O error, dev loop1, sector 9494400 -[3730487.381268] print_req_error: I/O error, dev loop1, sector 9494616 -[3730487.381335] print_req_error: I/O error, dev loop1, sector 5300224 -[3730487.381433] print_req_error: I/O error, dev loop1, sector 5300232 -[3730487.392995] print_req_error: I/O error, dev loop1, sector 85888 -[3730487.393112] print_req_error: I/O error, dev loop1, sector 86000 -[3730487.393185] print_req_error: I/O error, dev loop1, sector 20480 -[3730487.393320] print_req_error: I/O error, dev loop1, sector 20488 -[3730487.398683] print_req_error: I/O error, dev loop1, sector 5300096 -[3730487.398821] print_req_error: I/O error, dev loop1, sector 5300208 -[3752030.490479] print_req_error: 54 callbacks suppressed -[3752030.490481] print_req_error: I/O error, dev loop1, sector 9494400 -[3752030.490701] print_req_error: I/O error, dev loop1, sector 9494616 -[3752030.490762] print_req_error: I/O error, dev loop1, sector 5300224 -[3752030.490866] print_req_error: I/O error, dev loop1, sector 5300232 -[3752030.551580] print_req_error: I/O error, dev loop1, sector 85888 -[3752030.551699] print_req_error: I/O error, dev loop1, sector 86000 -[3752030.551855] print_req_error: I/O error, dev loop1, sector 20480 -[3752030.551969] print_req_error: I/O error, dev loop1, sector 20488 -[3752030.562144] print_req_error: I/O error, dev loop1, sector 5300096 -[3752030.562314] print_req_error: I/O error, dev loop1, sector 5300208 -[3752087.874041] print_req_error: 54 callbacks suppressed -[3752087.874042] print_req_error: I/O error, dev loop1, sector 9494400 -[3752087.874153] print_req_error: I/O error, dev loop1, sector 9494616 -[3752087.874211] print_req_error: I/O error, dev loop1, sector 5300224 -[3752087.874273] print_req_error: I/O error, dev loop1, sector 5300232 -[3752087.917649] print_req_error: I/O error, dev loop1, sector 85888 -[3752087.917797] print_req_error: I/O error, dev loop1, sector 86000 -[3752087.917912] print_req_error: I/O error, dev loop1, sector 20480 -[3752087.918070] print_req_error: I/O error, dev loop1, sector 20488 -[3752087.928001] print_req_error: I/O error, dev loop1, sector 5300096 -[3752087.928138] print_req_error: I/O error, dev loop1, sector 5300208 -[3773631.568600] print_req_error: 54 callbacks suppressed -[3773631.568601] print_req_error: I/O error, dev loop1, sector 9494400 -[3773631.568855] print_req_error: I/O error, dev loop1, sector 9494616 -[3773631.569006] print_req_error: I/O error, dev loop1, sector 5300224 -[3773631.569137] print_req_error: I/O error, dev loop1, sector 5300232 -[3773631.615282] print_req_error: I/O error, dev loop1, sector 85888 -[3773631.615436] print_req_error: I/O error, dev loop1, sector 86000 -[3773631.615520] print_req_error: I/O error, dev loop1, sector 20480 -[3773631.615661] print_req_error: I/O error, dev loop1, sector 20488 -[3773631.625742] print_req_error: I/O error, dev loop1, sector 5300096 -[3773631.625895] print_req_error: I/O error, dev loop1, sector 5300208 -[3773688.292887] print_req_error: 54 callbacks suppressed -[3773688.292889] print_req_error: I/O error, dev loop1, sector 9494400 -[3773688.292993] print_req_error: I/O error, dev loop1, sector 9494616 -[3773688.293106] print_req_error: I/O error, dev loop1, sector 5300224 -[3773688.293215] print_req_error: I/O error, dev loop1, sector 5300232 -[3773688.308292] print_req_error: I/O error, dev loop1, sector 85888 -[3773688.308421] print_req_error: I/O error, dev loop1, sector 86000 -[3773688.308468] print_req_error: I/O error, dev loop1, sector 20480 -[3773688.308615] print_req_error: I/O error, dev loop1, sector 20488 -[3773688.313880] print_req_error: I/O error, dev loop1, sector 5300096 -[3773688.314006] print_req_error: I/O error, dev loop1, sector 5300208 -[3785021.622611] usb 4-1.1: USB disconnect, device number 16 -[3785021.622617] usb 4-1.1.4: USB disconnect, device number 17 -[3785021.623398] usb 4-1.1.5: USB disconnect, device number 18 -[3785125.274899] usb 4-1.1: new high-speed USB device number 30 using ehci-pci -[3785125.383360] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785125.383366] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785125.383988] hub 4-1.1:1.0: USB hub found -[3785125.384144] hub 4-1.1:1.0: 7 ports detected -[3785125.670859] usb 4-1.1.4: new high-speed USB device number 31 using ehci-pci -[3785125.784391] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785125.784397] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.784400] usb 4-1.1.4: Product: servo:810-10010-02 -[3785125.784403] usb 4-1.1.4: Manufacturer: Google Inc -[3785125.784406] usb 4-1.1.4: SerialNumber: 641220-00008 -[3785125.870812] usb 4-1.1.5: new high-speed USB device number 32 using ehci-pci -[3785125.992537] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785125.992543] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.992546] usb 4-1.1.5: Product: servo:810-10010-02 -[3785125.992549] usb 4-1.1.5: Manufacturer: Google Inc -[3785125.992552] usb 4-1.1.5: SerialNumber: 641220-00008 -[3785170.870778] usb 4-1.1: USB disconnect, device number 30 -[3785170.870784] usb 4-1.1.4: USB disconnect, device number 31 -[3785170.871509] usb 4-1.1.5: USB disconnect, device number 32 -[3785399.444401] usb 4-1.1: new high-speed USB device number 33 using ehci-pci -[3785399.552969] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785399.552975] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785399.553492] hub 4-1.1:1.0: USB hub found -[3785399.553713] hub 4-1.1:1.0: 7 ports detected -[3785399.844386] usb 4-1.1.4: new high-speed USB device number 34 using ehci-pci -[3785399.961854] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785399.961859] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785399.961863] usb 4-1.1.4: Product: servo:810-10010-02 -[3785399.961866] usb 4-1.1.4: Manufacturer: Google Inc -[3785399.961869] usb 4-1.1.4: SerialNumber: 686203-00054 -[3785400.052405] usb 4-1.1.5: new high-speed USB device number 35 using ehci-pci -[3785400.169888] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785400.169894] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785400.169897] usb 4-1.1.5: Product: servo:810-10010-02 -[3785400.169900] usb 4-1.1.5: Manufacturer: Google Inc -[3785400.169903] usb 4-1.1.5: SerialNumber: 686203-00054 -[3789440.536209] usb 2-2.3: USB disconnect, device number 6 -[3789487.590458] usb 2-2.3: new low-speed USB device number 7 using xhci_hcd -[3789487.699433] usb 2-2.3: New USB device found, idVendor=1a7c, idProduct=0195, bcdDevice= 3.10 -[3789487.699439] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3789487.699442] usb 2-2.3: Product: Evoluent VerticalMouse C -[3789487.699445] usb 2-2.3: Manufacturer: SONiX -[3789487.715234] input: SONiX Evoluent VerticalMouse C as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:1A7C:0195.0006/input/input18 -[3789487.715781] hid-generic 0003:1A7C:0195.0006: input,hidraw3: USB HID v1.00 Mouse [SONiX Evoluent VerticalMouse C] on usb-0000:08:00.0-2.3/input0 -[3795231.326042] print_req_error: 54 callbacks suppressed -[3795231.326044] print_req_error: I/O error, dev loop1, sector 9494400 -[3795231.326309] print_req_error: I/O error, dev loop1, sector 9494616 -[3795231.326377] print_req_error: I/O error, dev loop1, sector 5300224 -[3795231.326484] print_req_error: I/O error, dev loop1, sector 5300232 -[3795231.390354] print_req_error: I/O error, dev loop1, sector 85888 -[3795231.390514] print_req_error: I/O error, dev loop1, sector 86000 -[3795231.390611] print_req_error: I/O error, dev loop1, sector 20480 -[3795231.390755] print_req_error: I/O error, dev loop1, sector 20488 -[3795231.400824] print_req_error: I/O error, dev loop1, sector 5300096 -[3795231.400980] print_req_error: I/O error, dev loop1, sector 5300208 -[3795290.731079] print_req_error: 54 callbacks suppressed -[3795290.731081] print_req_error: I/O error, dev loop1, sector 9494400 -[3795290.731158] print_req_error: I/O error, dev loop1, sector 9494616 -[3795290.731226] print_req_error: I/O error, dev loop1, sector 5300224 -[3795290.731253] print_req_error: I/O error, dev loop1, sector 5300232 -[3795290.767720] print_req_error: I/O error, dev loop1, sector 85888 -[3795290.767890] print_req_error: I/O error, dev loop1, sector 86000 -[3795290.767997] print_req_error: I/O error, dev loop1, sector 20480 -[3795290.768132] print_req_error: I/O error, dev loop1, sector 20488 -[3795290.811384] print_req_error: I/O error, dev loop1, sector 5300096 -[3795290.811520] print_req_error: I/O error, dev loop1, sector 5300208 -[3798561.211851] usb 4-1.2.4: USB disconnect, device number 28 -[3798561.311634] keyspan_1 ttyUSB1: Keyspan 1 port adapter converter now disconnected from ttyUSB1 -[3798561.311656] keyspan 4-1.2.4:1.0: device disconnected -[3798561.903281] ftdi_sio ttyUSB0: usb_serial_generic_read_bulk_callback - urb stopped: -32 -[3798561.903676] ftdi_sio ttyUSB0: usb_serial_generic_read_bulk_callback - urb stopped: -32 -[3798561.979859] usb 4-1.2.3: USB disconnect, device number 26 -[3798561.979997] ftdi_sio ttyUSB0: error from flowcontrol urb -[3798561.980234] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0 -[3798561.980261] ftdi_sio 4-1.2.3:1.0: device disconnected -[3798581.658982] usb 4-1.2.4: new full-speed USB device number 36 using ehci-pci -[3798581.785700] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[3798581.785705] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3798581.785709] usb 4-1.2.4: Product: Keyspan USA-19H -[3798581.785712] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[3798581.786568] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[3798581.786807] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB0 -[3798762.939619] usb 4-1.2.4: USB disconnect, device number 36 -[3798762.940099] keyspan_1 ttyUSB0: Keyspan 1 port adapter converter now disconnected from ttyUSB0 -[3798762.940143] keyspan 4-1.2.4:1.0: device disconnected -[3798764.185272] usb 4-1.2.3: new full-speed USB device number 37 using ehci-pci -[3798764.300743] usb 4-1.2.3: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 -[3798764.300749] usb 4-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3798764.300753] usb 4-1.2.3: Product: FT232R USB UART -[3798764.300755] usb 4-1.2.3: Manufacturer: FTDI -[3798764.300758] usb 4-1.2.3: SerialNumber: AL009FRA -[3798764.303690] ftdi_sio 4-1.2.3:1.0: FTDI USB Serial Device converter detected -[3798764.303754] usb 4-1.2.3: Detected FT232RL -[3798764.304393] usb 4-1.2.3: FTDI USB Serial Device converter now attached to ttyUSB0 -[3798772.389176] usb 4-1.2.4: new full-speed USB device number 38 using ehci-pci -[3798772.516419] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[3798772.516425] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3798772.516428] usb 4-1.2.4: Product: Keyspan USA-19H -[3798772.516431] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[3798772.517304] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[3798772.517613] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB1 -[3816832.288203] print_req_error: 54 callbacks suppressed -[3816832.288205] print_req_error: I/O error, dev loop1, sector 9494400 -[3816832.288461] print_req_error: I/O error, dev loop1, sector 9494616 -[3816832.288536] print_req_error: I/O error, dev loop1, sector 5300224 -[3816832.288645] print_req_error: I/O error, dev loop1, sector 5300232 -[3816832.328611] print_req_error: I/O error, dev loop1, sector 85888 -[3816832.328750] print_req_error: I/O error, dev loop1, sector 86000 -[3816832.328830] print_req_error: I/O error, dev loop1, sector 20480 -[3816832.328985] print_req_error: I/O error, dev loop1, sector 20488 -[3816832.360081] print_req_error: I/O error, dev loop1, sector 5300096 -[3816832.360233] print_req_error: I/O error, dev loop1, sector 5300208 -[3816887.663920] print_req_error: 54 callbacks suppressed -[3816887.663921] print_req_error: I/O error, dev loop1, sector 9494400 -[3816887.664007] print_req_error: I/O error, dev loop1, sector 9494616 -[3816887.664072] print_req_error: I/O error, dev loop1, sector 5300224 -[3816887.664106] print_req_error: I/O error, dev loop1, sector 5300232 -[3816887.666047] print_req_error: I/O error, dev loop1, sector 85888 -[3816887.666143] print_req_error: I/O error, dev loop1, sector 86000 -[3816887.666169] print_req_error: I/O error, dev loop1, sector 20480 -[3816887.666264] print_req_error: I/O error, dev loop1, sector 20488 -[3816887.693887] print_req_error: I/O error, dev loop1, sector 5300096 -[3816887.693978] print_req_error: I/O error, dev loop1, sector 5300208 -[3830899.575452] linhelmk unloading -[3830899.725878] linhelmk exit done -[3831200.052864] linhelmk loaded -[3831200.052867] This linhelmk was built with the IMA EXPERIMENT! -[3831200.081062] helm_ima_bridge_init() succeeded - IMA experiment running. -[3831200.082365] message queue initialized in 1024 pages of shared memory -[3831200.082586] cdev created: /dev/helm -[3831200.118355] probe is now in state 1 (was 0) -[3831200.126303] probe <__x64_sys_execve> is now in state 1 (was 0) -[3831200.132177] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3831200.138773] probe is now in state 1 (was 0) -[3831200.144717] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3831200.150714] probe is now in state 1 (was 0) -[3831200.157035] probe is now in state 1 (was 0) -[3831200.163040] probe is now in state 1 (was 0) -[3831200.168614] probe is now in state 1 (was 0) -[3831200.174423] probe is now in state 1 (was 0) -[3831200.174424] nf_hook 12 is now in state 1 (was 0) -[3831200.174425] nf_hook 13 is now in state 1 (was 0) -[3831200.174426] nf_hook 14 is now in state 1 (was 0) -[3831200.174426] nf_hook 15 is now in state 1 (was 0) -[3831200.174427] /dev/helm created; linhelm init done -[3838433.303659] print_req_error: 54 callbacks suppressed -[3838433.303661] print_req_error: I/O error, dev loop1, sector 9494400 -[3838433.303880] print_req_error: I/O error, dev loop1, sector 9494616 -[3838433.303960] print_req_error: I/O error, dev loop1, sector 5300224 -[3838433.304057] print_req_error: I/O error, dev loop1, sector 5300232 -[3838433.370876] print_req_error: I/O error, dev loop1, sector 85888 -[3838433.371027] print_req_error: I/O error, dev loop1, sector 86000 -[3838433.371133] print_req_error: I/O error, dev loop1, sector 20480 -[3838433.371283] print_req_error: I/O error, dev loop1, sector 20488 -[3838433.381469] print_req_error: I/O error, dev loop1, sector 5300096 -[3838433.381620] print_req_error: I/O error, dev loop1, sector 5300208 -[3838490.588118] print_req_error: 54 callbacks suppressed -[3838490.588120] print_req_error: I/O error, dev loop1, sector 9494400 -[3838490.588229] print_req_error: I/O error, dev loop1, sector 9494616 -[3838490.588291] print_req_error: I/O error, dev loop1, sector 5300224 -[3838490.588412] print_req_error: I/O error, dev loop1, sector 5300232 -[3838490.597471] print_req_error: I/O error, dev loop1, sector 85888 -[3838490.597571] print_req_error: I/O error, dev loop1, sector 86000 -[3838490.597670] print_req_error: I/O error, dev loop1, sector 20480 -[3838490.597769] print_req_error: I/O error, dev loop1, sector 20488 -[3838490.603281] print_req_error: I/O error, dev loop1, sector 5300096 -[3838490.603404] print_req_error: I/O error, dev loop1, sector 5300208 -[3860024.643570] print_req_error: 54 callbacks suppressed -[3860024.643571] print_req_error: I/O error, dev loop1, sector 9494400 -[3860024.643786] print_req_error: I/O error, dev loop1, sector 9494616 -[3860024.643845] print_req_error: I/O error, dev loop1, sector 5300224 -[3860024.643973] print_req_error: I/O error, dev loop1, sector 5300232 -[3860024.665871] print_req_error: I/O error, dev loop1, sector 85888 -[3860024.666001] print_req_error: I/O error, dev loop1, sector 86000 -[3860024.666153] print_req_error: I/O error, dev loop1, sector 20480 -[3860024.666284] print_req_error: I/O error, dev loop1, sector 20488 -[3860024.671412] print_req_error: I/O error, dev loop1, sector 5300096 -[3860024.671573] print_req_error: I/O error, dev loop1, sector 5300208 -[3860079.653261] print_req_error: 54 callbacks suppressed -[3860079.653263] print_req_error: I/O error, dev loop1, sector 9494400 -[3860079.653410] print_req_error: I/O error, dev loop1, sector 9494616 -[3860079.653469] print_req_error: I/O error, dev loop1, sector 5300224 -[3860079.653558] print_req_error: I/O error, dev loop1, sector 5300232 -[3860079.676414] print_req_error: I/O error, dev loop1, sector 85888 -[3860079.676510] print_req_error: I/O error, dev loop1, sector 86000 -[3860079.676583] print_req_error: I/O error, dev loop1, sector 20480 -[3860079.676652] print_req_error: I/O error, dev loop1, sector 20488 -[3860079.682166] print_req_error: I/O error, dev loop1, sector 5300096 -[3860079.682314] print_req_error: I/O error, dev loop1, sector 5300208 -[3881629.733227] print_req_error: 54 callbacks suppressed -[3881629.733229] print_req_error: I/O error, dev loop1, sector 9494400 -[3881629.733501] print_req_error: I/O error, dev loop1, sector 9494616 -[3881629.733577] print_req_error: I/O error, dev loop1, sector 5300224 -[3881629.733699] print_req_error: I/O error, dev loop1, sector 5300232 -[3881629.836389] print_req_error: I/O error, dev loop1, sector 85888 -[3881629.836539] print_req_error: I/O error, dev loop1, sector 86000 -[3881629.836690] print_req_error: I/O error, dev loop1, sector 20480 -[3881629.836836] print_req_error: I/O error, dev loop1, sector 20488 -[3881629.919656] print_req_error: I/O error, dev loop1, sector 5300096 -[3881629.919803] print_req_error: I/O error, dev loop1, sector 5300208 -[3881685.511548] print_req_error: 54 callbacks suppressed -[3881685.511550] print_req_error: I/O error, dev loop1, sector 9494400 -[3881685.511640] print_req_error: I/O error, dev loop1, sector 9494616 -[3881685.511687] print_req_error: I/O error, dev loop1, sector 5300224 -[3881685.511808] print_req_error: I/O error, dev loop1, sector 5300232 -[3881685.571459] print_req_error: I/O error, dev loop1, sector 85888 -[3881685.571605] print_req_error: I/O error, dev loop1, sector 86000 -[3881685.571682] print_req_error: I/O error, dev loop1, sector 20480 -[3881685.571839] print_req_error: I/O error, dev loop1, sector 20488 -[3881685.582186] print_req_error: I/O error, dev loop1, sector 5300096 -[3881685.582327] print_req_error: I/O error, dev loop1, sector 5300208 -[3883084.755555] usb 4-1.3: USB disconnect, device number 29 -[3883089.337157] usb 4-1.3: new high-speed USB device number 39 using ehci-pci -[3883089.449895] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[3883089.449901] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[3883089.451146] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[3883089.451151] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3883089.451154] usb 4-1.3: Product: EM100PRO -[3883089.451157] usb 4-1.3: Manufacturer: DediProg -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:35:34 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:35:34 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:35:43 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:35 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:35 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 395fad26 -Kernel: arch/x86/boot/bzImage is ready (#98) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:36 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:36:08 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently stopped -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ catg Macat Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./BRURN removeb1i -remove100 remove100.rom removemorecrap.bin removesomecrap.bin -remove100big.rom removeBMCcrap.bin removesetupcrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./BURN remove -remove100 remove100.rom removemorecrap.bin removesomecrap.bin -remove100big.rom removeBMCcrap.bin removesetupcrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./BURN remove100big.rom -[?2004l+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:47:34 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:47:34 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:47:44 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:47 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3669770 Jan 4 12:47 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': e': make bigit': reset [8@failed reverse-i-search)`ets[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ reset (reverse-i-search)`': t': PATH=$PATH:/usr/local/src/depot_tools/ e': ./u-root -build=bb github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/init github.com/u-root/u-root/cmds/ /{ls,cat,date}s': cp ~/go/src/github.com/u-root/u-root/integration/testdata/CONFIG . -  [1@t [8@failed reverse-i-search)`testr [1@a [1@m ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/go/src/github.com/u-root/u-root/integration/testdata/CONFIG .hstesthistor y | grep testramfs -[?2004l 2186 [2019-01-04 11:07:45 -0800] testramfs -i /tmp/initramfs.linux_amd64.cpio - 2187 [2019-01-04 11:07:47 -0800] sudo testramfs -i /tmp/initramfs.linux_amd64.cpio - 2188 [2019-01-04 11:08:06 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2191 [2019-01-04 11:10:35 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2196 [2019-01-04 11:15:09 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2198 [2019-01-04 11:17:20 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2200 [2019-01-04 11:18:48 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2203 [2019-01-04 11:22:06 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2206 [2019-01-04 11:27:50 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2230 [2019-01-04 12:48:27 -0800] history | grep testramfs -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ !2206 -[?2004lsudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio -2019/01/04 20:48:32 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 20:48:32 Created dir "/buildbin" (mode 0777) -2019/01/04 20:48:32 Created dir "/ubin" (mode 0777) -2019/01/04 20:48:32 Created dir "/tmp" (mode 0777) -2019/01/04 20:48:32 Created dir "/env" (mode 0777) -2019/01/04 20:48:32 Created dir "/tcz" (mode 0777) -2019/01/04 20:48:32 Created dir "/lib" (mode 0777) -2019/01/04 20:48:32 Created dir "/usr/lib" (mode 0777) -2019/01/04 20:48:32 Created dir "/var/log" (mode 0777) -2019/01/04 20:48:32 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 20:48:32 Created dir "/etc" (mode 0777) -2019/01/04 20:48:32 Created dir "/proc" (mode 0555) -2019/01/04 20:48:32 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 20:48:32 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 20:48:32 Created dir "/dev" (mode 0777) -2019/01/04 20:48:32 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 20:48:32 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 20:48:32 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 20:48:32 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 20:48:32 Created dir "/dev/pts" (mode 0777) -2019/01/04 20:48:32 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 20:48:32 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 20:48:32 Created dir "/dev/shm" (mode 0777) -2019/01/04 20:48:32 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 20:48:32 Created dir "/sys" (mode 0555) -2019/01/04 20:48:32 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 20:48:32 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 20:48:32 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 20:48:32 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 20:48:32 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 20:48:32 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 20:48:32 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 20:48:32 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 20:48:32 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 20:48:32 Done Rootfs -2019/01/04 20:48:32 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] -2019/01/04 20:48:32 Let's try to run /inito -2019/01/04 20:48:32 it's not there -2019/01/04 20:48:32 Let's try to run /bbin/uinit -2019/01/04 20:48:32 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001525a0 false [] [] [] [] } -2019/01/04 20:48:32 here we are in uinit -2019/01/04 20:48:32 UINIT uid is 0 -ip: Link not found -2019/01/04 20:48:32 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 20:48:32 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 20:48:32 Sleeping 16 seconds for stupid network to come up -2019/01/04 20:48:48 up all done -2019/01/04 20:48:48 Start an sshd -2019/01/04 20:48:48 Now dial 192.168.0.1:8080 -2019/01/04 20:48:48 Dial went poorly -2019/01/04 20:48:48 We are now done ...................... -2019/01/04 20:48:48 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 20:48:48 Shell exited, exit status 2 -2019/01/04 20:48:48 Let's try to run /bin/uinit -2019/01/04 20:48:48 it's not there -2019/01/04 20:48:48 Let's try to run /buildbin/uinit -2019/01/04 20:48:48 it's not there -2019/01/04 20:48:48 Let's try to run /bin/defaultsh -2019/01/04 20:48:48 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 20:48:48 is now /bbin/elvish -2019/01/04 20:48:48 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc000152640 false [] [] [] [] } -2019/01/04 20:48:48 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 20:48:55 Shell exited, exit status 0 -2019/01/04 20:48:55 Let's try to run /bin/sh -2019/01/04 20:48:55 Run &{/bin/sh [/bin/sh] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001526e0 false [] [] [] [] } -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l  [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 20:48:57 Shell exited, exit status 0 -2019/01/04 20:48:57 init: Waiting for orphaned children -2019/01/04 20:48:57 init: All commands exited -2019/01/04 20:48:57 init: Syncing filesystems - -2019/01/04 20:48:57 init: Exiting... -2019/01/04 12:48:57 Unmounting /tmp/u-root954867043 -2019/01/04 12:48:57 Removing /tmp/u-root954867043 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:49:00 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:49:00 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:49:10 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:49 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3669770 Jan 4 12:49 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC ef1633ed -Kernel: arch/x86/boot/bzImage is ready (#99) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 4 12:49 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:49:37 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:56:18 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:56:18 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:56:28 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:56 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3669887 Jan 4 12:56 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - OBJCOPY arch/x86/boot/vmlinux.bin - ZOFFSET arch/x86/boot/zoffset.h - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC a055e5b0 -Kernel: arch/x86/boot/bzImage is ready (#100) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 4 12:56 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:56:55 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 13:00:46 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 13:00:46 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 13:00:56 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 13:00 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3674182 Jan 4 13:00 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 27d54eb3 -Kernel: arch/x86/boot/bzImage is ready (#101) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 13:01 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 13:01:22 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@s': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio s': ssh itami[1@hvi ~/.ssh/known_hosts  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itaimmi -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:Eejc5U3xHdgtgRNgbueddE/cfoSm1vHGZNuy5zrhRhY. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -Password authentication is disabled to avoid man-in-the-middle attacks. -Keyboard-interactive authentication is disabled to avoid man-in-the-middle attacks. -warning: cannot create data directory ~/.elvish -[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l [?25h[?25l /> ???> [?25h[?25l ???@onie [?25h[?25l /> l ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "ls": executable file not found in $PATH -[tty], line 1: ls -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bi ???@onie [?25h[?25l [?25h[?25l /> /bin ???@onie [?25h[?25l [?25h[?25l /> /bin/ ???@onie [?25h[?25l [?25h[?25l /> /bin/l ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "/bin/ls": stat /bin/ls: no such file or directory -[tty], line 1: /bin/ls -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/l ???@onie [?25h[?25l [?25h[?25l /> /bbin/ls ???@onie [?25h[?25l [?25h[?25l /> /bbin/ls ???@onie [?25h[?25l  [?25h -[?7h[?2004l bbin -bin -buildbin -dev -env -etc -go -init -key.pub -lib -lib64 -proc -sys -tcz -tmp -ubin -usr -var -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> s ???@onie [?25h[?25l [?25h[?25l /> se ???@onie [?25h[?25l [?25h[?25l /> set ???@onie [?25h[?25l [?25h[?25l /> set ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "set": executable file not found in $PATH -[tty], line 1: set -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pr ???@onie [?25h[?25l [?25h[?25l /> prt ???@onie [?25h[?25l [?25h[?25l /> prti ???@onie [?25h[?25l [?25h[?25l /> prtin ???@onie [?25h[?25l [?25h[?25l /> prtine ???@onie [?25h[?25l [?25h[?25l /> prtinen ???@onie [?25h[?25l [?25h[?25l /> prtinenv ???@onie [?25h[?25l [?25h[?25l /> prtinenv ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "prtinenv": executable file not found in $PATH -[tty], line 1: prtinenv -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pr ???@onie [?25h[?25l [?25h[?25l /> pri ???@onie [?25h[?25l [?25h[?25l /> prin ???@onie [?25h[?25l [?25h[?25l /> print ???@onie [?25h[?25l [?25h[?25l /> printe ???@onie [?25h[?25l [?25h[?25l /> printen ???@onie [?25h[?25l [?25h[?25l /> printenv ???@onie [?25h[?25l [?25h[?25l /> printenv ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "printenv": executable file not found in $PATH -[tty], line 1: printenv -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo $ ???@onie -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l - -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l /> echo $ - ???@onie -compilation error: 5-7 in [tty]: variable $ - not found [?25h[?25l - - - -compilation error: 5-7 in [tty]: variable $ - not found [?25h[?25l /> echo $ - ???@onie -compilation error: 5-7 in [tty]: variable $ - not found [?25h[?25l - - [?25h -[?7h[?2004l Compilation error: variable $ - not found -[tty], line 1: echo $ -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo $ ???@onie -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l /> echo $P ???@onie -compilation error: 5-7 in [tty]: variable $P not found [?25h[?25l - -compilation error: 5-7 in [tty]: variable $P not found [?25h[?25l /> echo $PA ???@onie -compilation error: 5-8 in [tty]: variable $PA not found [?25h[?25l - -compilation error: 5-8 in [tty]: variable $PA not found [?25h[?25l /> echo $PAT ???@onie -compilation error: 5-9 in [tty]: variable $PAT not found [?25h[?25l - -compilation error: 5-9 in [tty]: variable $PAT not found [?25h[?25l /> echo $PATH ???@onie -compilation error: 5-10 in [tty]: variable $PATH not found [?25h[?25l - -compilation error: 5-10 in [tty]: variable $PATH not found [?25h[?25l /> echo $PATH ???@onie -compilation error: 5-10 in [tty]: variable $PATH not found [?25h[?25l  - [?25h -[?7h[?2004l Compilation error: variable $PATH not found -[tty], line 1: echo $PATH -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo $ ???@onie -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l /> echo $p ???@onie -compilation error: 5-7 in [tty]: variable $p not found [?25h[?25l - -compilation error: 5-7 in [tty]: variable $p not found [?25h[?25l /> echo $pa ???@onie -compilation error: 5-8 in [tty]: variable $pa not found [?25h[?25l - -compilation error: 5-8 in [tty]: variable $pa not found [?25h[?25l /> echo $pat ???@onie -compilation error: 5-9 in [tty]: variable $pat not found [?25h[?25l - -compilation error: 5-9 in [tty]: variable $pat not found [?25h[?25l /> echo $path ???@onie -compilation error: 5-10 in [tty]: variable $path not found [?25h[?25l - -compilation error: 5-10 in [tty]: variable $path not found [?25h[?25l /> echo $path ???@onie -compilation error: 5-10 in [tty]: variable $path not found [?25h[?25l  - [?25h -[?7h[?2004l Compilation error: variable $path not found -[tty], line 1: echo $path -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> 3 ???@onie [?25h[?25l [?25h[?25l /> 3h ???@onie [?25h[?25l [?25h[?25l /> 3ho ???@onie [?25h[?25l [?25h[?25l /> 3ho ???@onie [?25h[?25l [?25h[?25l /> 3ho ???@onie [?25h[?25l [?25h[?25l /> 3h ???@onie [?25h[?25l [?25h[?25l /> 3 ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo $ ???@onie -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l - -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l /> echo $-source~ ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~  binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l - - -compilation error: 5-6 in [tty]: variable $ not found --source~  binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $E: ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E:  binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E:  binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $after-chdir ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir  builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l $after-chdir ???@onie - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir  builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $builtin: ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $edit: ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $paths ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l $paths ???@onie - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $paths ???@onie [?25h[?25l [?25h[?25l /> echo $paths ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "echo": executable file not found in $PATH -[tty], line 1: echo $paths -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "echo": executable file not found in $PATH -[tty], line 1: echo -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> l ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l [?25h[?25l /> ls $ ???@onie -compilation error: 3-4 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 3-4 in [tty]: variable $ not found [?25h[?25l /> ls $p ???@onie -compilation error: 3-5 in [tty]: variable $p not found [?25h[?25l - -compilation error: 3-5 in [tty]: variable $p not found [?25h[?25l /> ls $pa ???@onie -compilation error: 3-6 in [tty]: variable $pa not found [?25h[?25l - -compilation error: 3-6 in [tty]: variable $pa not found [?25h[?25l /> ls $pat ???@onie -compilation error: 3-7 in [tty]: variable $pat not found [?25h[?25l - -compilation error: 3-7 in [tty]: variable $pat not found [?25h[?25l /> ls $path ???@onie -compilation error: 3-8 in [tty]: variable $path not found [?25h[?25l - -compilation error: 3-8 in [tty]: variable $path not found [?25h[?25l /> ls $paths ???@onie [?25h[?25l [?25h[?25l /> ls $paths ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "ls": executable file not found in $PATH -[tty], line 1: ls $paths -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/e ???@onie [?25h[?25l [?25h[?25l /> /bbin/ec ???@onie [?25h[?25l [?25h[?25l /> /bbin/ech ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $ ???@onie -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l - -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l /> /bbin/echo $p ???@onie -compilation error: 11-13 in [tty]: variable $p not found [?25h[?25l $p ???@onie - -compilation error: 11-13 in [tty]: variable $p not found [?25h[?25l /> /bbin/echo $pa ???@onie -compilation error: 11-14 in [tty]: variable $pa not found [?25h[?25l - -compilation error: 11-14 in [tty]: variable $pa not found [?25h[?25l /> /bbin/echo $pat ???@onie -compilation error: 11-15 in [tty]: variable $pat not found [?25h[?25l - -compilation error: 11-15 in [tty]: variable $pat not found [?25h[?25l /> /bbin/echo $path ???@onie -compilation error: 11-16 in [tty]: variable $path not found [?25h[?25l - -compilation error: 11-16 in [tty]: variable $path not found [?25h[?25l /> /bbin/echo $paths ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $paths ???@onie [?25h[?25l  [?25h -[?7h[?2004l > -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> r ???@onie [?25h[?25l [?25h[?25l /> ru ???@onie [?25h[?25l [?25h[?25l /> rus ???@onie [?25h[?25l [?25h[?25l /> rush ???@onie [?25h[?25l [?25h[?25l /> rush ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "rush": executable file not found in $PATH -[tty], line 1: rush -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/r ???@onie [?25h[?25l [?25h[?25l /> /bbin/ru ???@onie [?25h[?25l [?25h[?25l /> /bbin/rus ???@onie [?25h[?25l [?25h[?25l /> /bbin/rush ???@onie [?25h[?25l [?25h[?25l /> /bbin/rush ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "/bbin/rush": stat /bbin/rush: no such file or directory -[tty], line 1: /bbin/rush -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bi ???@onie [?25h[?25l [?25h[?25l /> /bin ???@onie [?25h[?25l [?25h[?25l /> /bin/ ???@onie [?25h[?25l [?25h[?25l /> /bin/l ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l [?25h[?25l /> /bin/l ???@onie [?25h[?25l [?25h[?25l /> /bin/ ???@onie [?25h[?25l [?25h[?25l /> /bin ???@onie [?25h[?25l [?25h[?25l /> /bi ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> s ???@onie [?25h[?25l [?25h[?25l /> se ???@onie [?25h[?25l [?25h[?25l /> set ???@onie [?25h[?25l [?25h[?25l /> sete ???@onie [?25h[?25l [?25h[?25l /> seten ???@onie [?25h[?25l [?25h[?25l /> setenv ???@onie [?25h[?25l [?25h[?25l /> setenv ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "setenv": executable file not found in $PATH -[tty], line 1: setenv -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> en ???@onie [?25h[?25l [?25h[?25l /> en ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> en ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> en ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> en ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pr ???@onie [?25h[?25l [?25h[?25l /> pri ???@onie [?25h[?25l [?25h[?25l /> prin ???@onie [?25h[?25l [?25h[?25l /> prin ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> prin ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> prin ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> prin ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> pri ???@onie [?25h[?25l [?25h[?25l /> pr ???@onie [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> h ???@onie [?25h[?25l [?25h[?25l /> he ???@onie [?25h[?25l [?25h[?25l /> he ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> he ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> he ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> h ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bb/ ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/e ???@onie [?25h[?25l [?25h[?25l /> /bbin/ec ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $ ???@onie -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E: ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:P ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:PA ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:PAT ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:PATH ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:PATH ???@onie [?25h[?25l  [?25h -[?7h[?2004l E:PATH -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l Unbound: Ctrl-P -/> ???@onie [?25h[?25l [?25h[?25l Unbound: Ctrl-B -/> ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/e ???@onie [?25h[?25l [?25h[?25l /> /bbin/ec ???@onie [?25h[?25l [?25h[?25l /> /bbin/ech ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $ ???@onie -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l /> /bbin/echo $E ???@onie -compilation error: 11-13 in [tty]: variable $E not found [?25h[?25l $E ???@onie - -compilation error: 11-13 in [tty]: variable $E not found [?25h[?25l /> /bbin/echo $E: ???@onie -compilation error: 11-14 in [tty]: variable $E: not found [?25h[?25l - -compilation error: 11-14 in [tty]: variable $E: not found [?25h[?25l /> /bbin/echo $E:P ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $E:PA ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $E:PAT ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $E:PATH ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $E:PATH ???@onie [?25h[?25l  [?25h -[?7h[?2004l -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bi ???@onie [?25h[?25l [?25h[?25l /> /bin ???@onie [?25h[?25l [?25h[?25l /> /bin/ ???@onie [?25h[?25l [?25h[?25l /> /bin/l ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l [?25h[?25l /> /bin/ls E ???@onie [?25h[?25l [?25h[?25l /> /bin/ls E: ???@onie [?25h[?25l [?25h[?25l /> /bin/ls E: ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "/bin/ls": stat /bin/ls: no such file or directory -[tty], line 1: /bin/ls E: -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pu ???@onie [?25h[?25l [?25h[?25l /> put ???@onie [?25h[?25l [?25h[?25l /> put ???@onie [?25h[?25l [?25h[?25l /> put $ ???@onie -compilation error: 4-5 in [tty]: variable $ not found [?25h[?25l - -compilation error: 4-5 in [tty]: variable $ not found [?25h[?25l /> put $E ???@onie -compilation error: 4-6 in [tty]: variable $E not found [?25h[?25l $E ???@onie - -compilation error: 4-6 in [tty]: variable $E not found [?25h[?25l /> put $E: ???@onie -compilation error: 4-7 in [tty]: variable $E: not found [?25h[?25l $E: ???@onie - -compilation error: 4-7 in [tty]: variable $E: not found [?25h[?25l /> put $E:H ???@onie [?25h[?25l [?25h[?25l /> put $E:HO ???@onie [?25h[?25l [?25h[?25l /> put $E:HOM ???@onie [?25h[?25l [?25h[?25l /> put $E:HOME ???@onie [?25h[?25l [?25h[?25l /> put $E:HOME ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "put": executable file not found in $PATH -[tty], line 1: put $E:HOME -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pu ???@onie [?25h[?25l [?25h[?25l /> put ???@onie [?25h[?25l [?25h[?25l /> pu ???@onie [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/e ???@onie [?25h[?25l [?25h[?25l /> /bbin/ec ???@onie [?25h[?25l [?25h[?25l /> /bbin/ech ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $ ???@onie -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l - -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l /> /bbin/echo $p ???@onie -compilation error: 11-13 in [tty]: variable $p not found [?25h[?25l $p ???@onie - -compilation error: 11-13 in [tty]: variable $p not found [?25h[?25l /> /bbin/echo $pa ???@onie -compilation error: 11-14 in [tty]: variable $pa not found [?25h[?25l - -compilation error: 11-14 in [tty]: variable $pa not found [?25h[?25l /> /bbin/echo $pat ???@onie -compilation error: 11-15 in [tty]: variable $pat not found [?25h[?25l $pat ???@onie - -compilation error: 11-15 in [tty]: variable $pat not found [?25h[?25l /> /bbin/echo $path ???@onie -compilation error: 11-16 in [tty]: variable $path not found [?25h[?25l $path ???@onie - -compilation error: 11-16 in [tty]: variable $path not found [?25h[?25l /> /bbin/echo $paths ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $paths ???@onie [?25h[?25l  [?25h -[?7h[?2004l > -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> E ???@onie [?25h[?25l [?25h[?25l /> E: ???@onie [?25h[?25l [?25h[?25l /> E:P ???@onie [?25h[?25l [?25h[?25l /> E:PA ???@onie [?25h[?25l [?25h[?25l /> E:PAT ???@onie [?25h[?25l [?25h[?25l /> E:PATH ???@onie [?25h[?25l [?25h[?25l /> E:PATH= ???@onie [?25h[?25l [?25h[?25l /> E:PATH=" ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/ ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/b ???@onie [?25h[?25l "/b ???@onie [?25h[?25l /> E:PATH="/bi ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin: ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/ ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/b ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bb ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bbi ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bbin ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bbin" ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bbin" ???@onie [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> l ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l  [?25h -[?7h[?2004l bbin -bin -buildbin -dev -env -etc -go -init -key.pub -lib -lib64 -proc -sys -tcz -tmp -ubin -usr -var -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l  [?25h -[?7h[?2004l Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ../linupushd linux/ -[?2004l/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 ~/go/src/github.com/linuxboot/dut/uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ make mneuconfenuconfig -[?2004lscripts/kconfig/mconf Kconfig -[?1049h(B[?7h[?1h=[?1h=[?1h=(B .config - Linux/x86 4.13.0-rc7 Kernel Configuration - (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B - -   -   -   -   -   - (B(B[*] 64-bit kernel(B(B   -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -   -   -   -   - (B - (BG(Beneral setup --->(B -[*] (BE(Bnable loadable module support --->(B -[*] (BE(Bnable the block layer --->(B - (BP(Brocessor type and features --->(B - (BP(Bower management and ACPI options --->(B - (BB(Bus options (PCI etc.) --->(B - (BE(Bxecutable file formats / Emulations --->(B -[*] N(Be(Btworking support --->(B - (BD(Bevice Drivers --->(B - (BF(Birmware Drivers --->(B - (BF(Bile systems --->(B - (BK(Bernel hacking --->(B - (BS(Becurity options --->(B --*- (BC(Bryptographic API --->(B -[ ] (BV(Birtualization ----(B - (BL(Bibrary routines --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Linux/x86 4.13.0-rc7 Kernel Configuration (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqq(B Search Configuration Parameter (0qqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Enter (sub)string or regexp to search for (with or without "CONFIG_") (0x(B  (0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B  (0x(B (0x(B(0x(B (0x(B  (0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B  (0x(B (0x(B  (0x(B (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Ok >(B <(B (BH(Belp (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (B9(Bp(B[?1h=[?1h= -(0>(B Search (9p) - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Search Results (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Symbol: 9P_FS [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (1) -> Network File Systems (NETWORK_FILESYSTEMS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:1(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=n] && INET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FSCACHE [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Enable 9P client caching support(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (2) -> Network File Systems (NETWORK_FILESYSTEMS [=n])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:13(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=n] && 9P_FS [=n] && (9P_FS [=n]=m && FSCACHE [=n] || 9P_FS [=n]=y && FSCACHE [=n]=y)(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_POSIX_ACL [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P POSIX Access Control Lists(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (3) -> Network File Systems (NETWORK_FILESYSTEMS [=n])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:21(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=n] && 9P_FS [=n](0x(B -(0x(B Selects: FS_POSIX_ACL [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_SECURITY [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P Security Labels(0x(B -(0x(B Location: (0x(B -(0x(B -> File systems(0x(B -(0x(B (4) -> Network File Systems (NETWORK_FILESYSTEMS [=n])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:36(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=n] && 9P_FS [=n]  (0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B (5) -> Networking support (NET [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:5(0x(B -(0x(B Depends on: NET [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_DEBUG [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Debug information(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:40(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_RDMA [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P RDMA Transport (Experimental)(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:34(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_VIRTIO [=n](0x(B -(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B( 68%)(0qq(0u(B -(0x(B(B< Exit >(B(0x(B -(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B -(B[?1h=[?1h=(0>(B File systems - - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[ ] Network File Systems ----(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h=(0>(B Network File Systems - - - - - - - --- Network File Systems(B (B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BC(Beph distributed file system (NEW)(B -< > (BS(BMB3 and CIFS support (advanced network filesystem) (NEW)(B -< > N(BC(BP file system support (to mount NetWare volumes) (NEW)(B -< > (BC(Boda file system support (advanced network fs) (NEW)(B -< > (BA(Bndrew File System support (AFS) (NEW)(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Network File Systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h=[?1h=(0qqqqqqqqqqqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqq(B Search Configuration Parameter (0qqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Enter (sub)string or regexp to search for (with or without "CONFIG_") (0x(B  (0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B  (0x(B (0x(B(0x(B (0x(B  (0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B  (0x(B (0x(B  (0x(B (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Ok >(B <(B (BH(Belp (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (B9(Bp(B[?1h=[?1h=(0>(B Search (9p) - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Search Results (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Symbol: 9P_FS [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (1) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B Defined at fs/9p/Kconfig:1(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && INET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FSCACHE [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Enable 9P client caching support(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (2) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:13(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n] && (9P_FS [=n]=m && FSCACHE [=n] || 9P_FS [=n]=y && FSCACHE [=n]=y)(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_POSIX_ACL [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P POSIX Access Control Lists(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (3) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:21(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n](0x(B -(0x(B Selects: FS_POSIX_ACL [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_SECURITY [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P Security Labels(0x(B -(0x(B Location: (0x(B -(0x(B -> File systems(0x(B -(0x(B (4) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:36(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n]  (0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B (5) -> Networking support (NET [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:5(0x(B -(0x(B Depends on: NET [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_DEBUG [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Debug information(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:40(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_RDMA [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P RDMA Transport (Experimental)(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:34(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_VIRTIO [=n](0x(B -(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B( 68%)(0qq(0u(B -(0x(B(B< Exit >(B(0x(B -(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B -(B[?1h=[?1h=(0qqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqq(B Search Configuration Parameter (0qqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Enter (sub)string or regexp to search for (with or without "CONFIG_") (0x(B  (0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B  (0x(B (0x(B(0x(B (0x(B  (0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B  (0x(B (0x(B  (0x(B (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Ok >(B <(B (BH(Belp (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (BN(BE(BT(B)(B (B_(B9(BP(B[?1h=[?1h=(0>(B Search (NET_9P) - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Search Results (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Symbol: NET_9P [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B (1) -> Networking support (NET [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:5(0x(B -(0x(B Depends on: NET [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_DEBUG [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Debug information(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (2) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:40(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_RDMA [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P RDMA Transport (Experimental)(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (3) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:34(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_VIRTIO [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P Virtio Transport(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (4) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:18(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && VIRTIO [=y] (0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_XEN [=n] (0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P Xen Transport   (0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (5) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:25(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && XEN [=n](0x(B -(0x(B Selects: XEN_XENBUS_FRONTEND [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B(100%)(0qq(0u(B -(0x(B(B< Exit >(B(0x(B -(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B -(B[?1h=[?1h=(0>(B Networking support - - - - - - - (B--- Networking support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B - N(Be(Btworking options --->(B -[ ] (BA(Bmateur Radio support ----(B -< > (BC(BAN bus subsystem support ----(B -< > (BI(BrDA (infrared) subsystem support ----(B -< > (BB(Bluetooth subsystem support ----(B -< > (BR(BxRPC session sockets(B -< > (BK(BCM sockets(B -[ ] (BW(Bireless ----(B -< > (BW(BiMAX Wireless Broadband support ----(B -< > (BR(BF switch subsystem support ----(B -(B< > Plan 9 Resource Sharing Support (9P2000) ----(B(B -< > (BC(BAIF support ----(B -< > (BC(Beph core library(B -< > N(BF(BC subsystem support ----(B -< > (BP(Backet-sampling netlink channel ----(B -< > (BI(Bnter-FE based on IETF ForCES InterFE LFB ----(B -[ ] N(Be(Btwork light weight tunnels(B -< > N(Be(Btwork physical/parent device Netlink interface(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Networking support (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B - N(Be(Btworking options --->(B -[ ] (BA(Bmateur Radio support ----(B -< > (BC(BAN bus subsystem support ----(B -< > (BI(BrDA (infrared) subsystem support ----(B -< > (BB(Bluetooth subsystem support ----(B -< > (BR(BxRPC session sockets(B -< > (BK(BCM sockets(B -[ ] (BW(Bireless ----(B -< > (BW(BiMAX Wireless Broadband support ----(B -< > (BR(BF switch subsystem support ----(B -(B Plan 9 Resource Sharing Support (9P2000) --->(B(B -< > (BC(BAIF support ----(B -< > (BC(Beph core library(B -< > N(BF(BC subsystem support ----(B -< > (BP(Backet-sampling netlink channel ----(B -< > (BI(Bnter-FE based on IETF ForCES InterFE LFB ----(B -[ ] N(Be(Btwork light weight tunnels(B -< > N(Be(Btwork physical/parent device Netlink interface(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Networking support (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B - N(Be(Btworking options --->(B -[ ] (BA(Bmateur Radio support ----(B -< > (BC(BAN bus subsystem support ----(B -< > (BI(BrDA (infrared) subsystem support ----(B -< > (BB(Bluetooth subsystem support ----(B -< > (BR(BxRPC session sockets(B -< > (BK(BCM sockets(B -[ ] (BW(Bireless ----(B -< > (BW(BiMAX Wireless Broadband support ----(B -< > (BR(BF switch subsystem support ----(B -(B<*> Plan 9 Resource Sharing Support (9P2000) --->(B(B -< > (BC(BAIF support ----(B -< > (BC(Beph core library(B -< > N(BF(BC subsystem support ----(B -< > (BP(Backet-sampling netlink channel ----(B -< > (BI(Bnter-FE based on IETF ForCES InterFE LFB ----(B -[ ] N(Be(Btwork light weight tunnels(B -< > N(Be(Btwork physical/parent device Netlink interface(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Networking support (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h=[?1h=(0qqqqqqqqqqqqqqqqqqqqq(B(B(0qq(B Search Results (0qq(B(B -(0(BSymbol: NET_9P [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) -Location: -(1) -> Networking support (NET [=y]) - Defined at net/9p/Kconfig:5 - Depends on: NET [=y] -  -  -Symbol: NET_9P_DEBUG [=n] -Type : boolean -Prompt: Debug information - Location: - -> Networking support (NET [=y]) -(2) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:40 - Depends on: NET [=y] && NET_9P [=y] -  -  -Symbol: NET_9P_RDMA [=n] -Type : tristate -Prompt: 9P RDMA Transport (Experimental) - Location: - -> Networking support (NET [=y]) -(3) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:34 - Depends on: NET [=y] && NET_9P [=y] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n] - - -Symbol: NET_9P_VIRTIO [=n] -Type : tristate -Prompt: 9P Virtio Transport - Location: - -> Networking support (NET [=y]) -(4) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:18 - Depends on: NET [=y] && NET_9P [=y] && VIRTIO [=y] - - -Symbol: NET_9P_XEN [=n] -Type : tristate -Prompt: 9P Xen Transport - Location: - -> Networking support (NET [=y]) -(5) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:25 - Depends on: NET [=y] && NET_9P [=y] && XEN [=n] - Selects: XEN_XENBUS_FRONTEND [=n] - - - - - - - - - - - - - - - - - - - - - - - - - -(B(100%)(B(B< Exit >(B(B[?1h=[?1h=(0qqqqqqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqq(B Search Configuration Parameter (0qqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Enter (sub)string or regexp to search for (with or without "CONFIG_") (0x(B  (0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B  (0x(B (0x(B(0x(B (0x(B  (0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B  (0x(B (0x(B  (0x(B (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Ok >(B <(B (BH(Belp (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (B9(Bp(B[?1h=[?1h=(0>(B Search (9p) - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Search Results (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Symbol: 9P_FS [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (1) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B Defined at fs/9p/Kconfig:1(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && INET [=y] && NET_9P [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FSCACHE [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Enable 9P client caching support(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B (2) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:13(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n] && (9P_FS [=n]=m && FSCACHE [=n] || 9P_FS [=n]=y && FSCACHE [=n]=y)(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_POSIX_ACL [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P POSIX Access Control Lists(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B (3) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:21(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n](0x(B -(0x(B Selects: FS_POSIX_ACL [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_SECURITY [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P Security Labels(0x(B -(0x(B Location: (0x(B -(0x(B -> File systems(0x(B -(0x(B -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B (4) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:36(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n]  (0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P [=y](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B (5) -> Networking support (NET [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:5(0x(B -(0x(B Depends on: NET [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_DEBUG [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Debug information(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:40(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_RDMA [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P RDMA Transport (Experimental)(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:34(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=y] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_VIRTIO [=n](0x(B -(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B( 68%)(0qq(0u(B -(0x(B(B< Exit >(B(0x(B -(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B -(B[?1h=[?1h=(0>(B Network File Systems - - - - - - - (B--- Network File Systems(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BC(Beph distributed file system (NEW)(B -< > (BS(BMB3 and CIFS support (advanced network filesystem) (NEW)(B -< > N(BC(BP file system support (to mount NetWare volumes) (NEW)(B -< > (BC(Boda file system support (advanced network fs) (NEW)(B -< > (BA(Bndrew File System support (AFS) (NEW)(B -(B< > Plan 9 Resource Sharing Support (9P2000) (NEW)(B(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Network File Systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BC(Beph distributed file system (NEW)(B -< > (BS(BMB3 and CIFS support (advanced network filesystem) (NEW)(B -< > N(BC(BP file system support (to mount NetWare volumes) (NEW)(B -< > (BC(Boda file system support (advanced network fs) (NEW)(B -< > (BA(Bndrew File System support (AFS) (NEW)(B -(B Plan 9 Resource Sharing Support (9P2000)(B(B -[ ] 9(BP(B POSIX Access Control Lists (NEW)(B -[ ] 9(BP(B Security Labels (NEW)(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Network File Systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BC(Beph distributed file system (NEW)(B -< > (BS(BMB3 and CIFS support (advanced network filesystem) (NEW)(B -< > N(BC(BP file system support (to mount NetWare volumes) (NEW)(B -< > (BC(Boda file system support (advanced network fs) (NEW)(B -< > (BA(Bndrew File System support (AFS) (NEW)(B -(B<*> Plan 9 Resource Sharing Support (9P2000)(B(B -[ ] 9(BP(B POSIX Access Control Lists (NEW)(B -[ ] 9(BP(B Security Labels (NEW)(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Network File Systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h=[?1h=(0qqqqqqqqqqqqqqqqqqqqqqq(B(B -(0qqq(B Search Results (0qqq(B(B -(0(BSymbol: 9P_FS [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) -Location: - -> File systems -(1) -> Network File Systems (NETWORK_FILESYSTEMS [=y])  - Defined at fs/9p/Kconfig:1 - Depends on: NETWORK_FILESYSTEMS [=y] && INET [=y] && NET_9P [=y] -  -  -Symbol: 9P_FSCACHE [=n] -Type : boolean -Prompt: Enable 9P client caching support - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y]) -(2) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:13 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] && (9P_FS [=y]=m && FSCACHE [=n] || 9P_FS [=y]=y && FSCACHE [=n]=y) - - -Symbol: 9P_FS_POSIX_ACL [=n] -Type : boolean -Prompt: 9P POSIX Access Control Lists - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y]) -(3) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:21 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] - Selects: FS_POSIX_ACL [=y] - - -Symbol: 9P_FS_SECURITY [=n] -Type : boolean -Prompt: 9P Security Labels - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y]) -(4) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:36 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] - - -Symbol: NET_9P [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) - Location: -(5) -> Networking support (NET [=y]) - Defined at net/9p/Kconfig:5 - Depends on: NET [=y] - - -Symbol: NET_9P_DEBUG [=n] -Type : boolean -Prompt: Debug information - Location: - -> Networking support (NET [=y]) -(6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:40 - Depends on: NET [=y] && NET_9P [=y] - - -Symbol: NET_9P_RDMA [=n] -Type : tristate -Prompt: 9P RDMA Transport (Experimental) - Location: - -> Networking support (NET [=y]) -(7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:34 - Depends on: NET [=y] && NET_9P [=y] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n] - - -Symbol: NET_9P_VIRTIO [=n](B( 68%)(B(B< Exit >(B(B[?1h=[?1h=(0qqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h=[?1h=(0qqqqqqqqqqqqqqq(B(B(0(B Search Results -(BSymbol: 9P_FS [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) -Location: - -> File systems -(1) -> Network File Systems (NETWORK_FILESYSTEMS [=y])  - Defined at fs/9p/Kconfig:1 - Depends on: NETWORK_FILESYSTEMS [=y] && INET [=y] && NET_9P [=y]  -  -  -Symbol: 9P_FSCACHE [=n] -Type : boolean -Prompt: Enable 9P client caching support - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y])  -(2) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:13 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] && (9P_FS [=y]=m && FSCACHE [=n] || 9P_FS [=y]=y && FSCACHE [=n]=y) -  -  -Symbol: 9P_FS_POSIX_ACL [=n] -Type : boolean -Prompt: 9P POSIX Access Control Lists - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y])  -(3) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:21 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y]  - Selects: FS_POSIX_ACL [=y] -  -  -Symbol: 9P_FS_SECURITY [=n] -Type : boolean -Prompt: 9P Security Labels - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y]) -(4) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:36 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] - - -Symbol: NET_9P [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) - Location: -(5) -> Networking support (NET [=y]) - Defined at net/9p/Kconfig:5 - Depends on: NET [=y] - - -Symbol: NET_9P_DEBUG [=n] -Type : boolean -Prompt: Debug information - Location: - -> Networking support (NET [=y]) -(6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:40 - Depends on: NET [=y] && NET_9P [=y] - - -Symbol: NET_9P_RDMA [=n] -Type : tristate -Prompt: 9P RDMA Transport (Experimental) - Location: - -> Networking support (NET [=y]) -(7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:34 - Depends on: NET [=y] && NET_9P [=y] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n] - - -Symbol: NET_9P_VIRTIO [=n](B( 68%)(B(B< Exit >(B(B[?1h=[?1h= -(0qqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B(B[*] 64-bit kernel(B (B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B - (BG(Beneral setup --->(B -[*] (BE(Bnable loadable module support --->(B -[*] (BE(Bnable the block layer --->(B - (BP(Brocessor type and features --->(B - (BP(Bower management and ACPI options --->(B - (BB(Bus options (PCI etc.) --->(B - (BE(Bxecutable file formats / Emulations --->(B -[*] N(Be(Btworking support --->(B - (BD(Bevice Drivers --->(B - (BF(Birmware Drivers --->(B - (BF(Bile systems --->(B - (BK(Bernel hacking --->(B - (BS(Becurity options --->(B --*- (BC(Bryptographic API --->(B -[ ] (BV(Birtualization ----(B - (BL(Bibrary routines --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Linux/x86 4.13.0-rc7 Kernel Configuration (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Do you wish to save your new configuration? (0x(B  (0x(B (Press to continue kernel configuration.) (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Yes >(B <(B (BN(Bo (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (B[?1049l [?1l>configuration written to .config - -*** End of the configuration. -*** Execute 'make' to start the build or try 'make help'. - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ makecp .config ../ -98.splat EATIT LIST removesomecrap.bin -bin.reset fail.bin LOG rom211.rom -blacklist futk.remove.99/ Makefile RUN3 -BURN .gitignore NOTES RUN4 -commentmorecrap.bin initramfs.linux_amd64.cpio remove100 RUN4.4.rom -commentsetupcrap.bin initramfs.linux_amd64.cpio.lzma remove100big.rom tyan7102.bin -config-4.13.0-rc7 ipmisucks.bin remove100.rom uinit -DIT key.pub removeBMCcrap.bin x.bin -dxeclean.bin L removemorecrap.bin -DXECLEANER linux/ removesetupcrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ cp .config ../ -98.splat EATIT LIST removesomecrap.bin -bin.reset fail.bin LOG rom211.rom -blacklist futk.remove.99/ Makefile RUN3 -BURN .gitignore NOTES RUN4 -commentmorecrap.bin initramfs.linux_amd64.cpio remove100 RUN4.4.rom -commentsetupcrap.bin initramfs.linux_amd64.cpio.lzma remove100big.rom tyan7102.bin -config-4.13.0-rc7 ipmisucks.bin remove100.rom uinit -DIT key.pub removeBMCcrap.bin x.bin -dxeclean.bin L removemorecrap.bin -DXECLEANER linux/ removesetupcrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ cp .config ../config-4.13.0-rc7 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ cd .. -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 13:09:34 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 13:09:34 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 13:09:44 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 13:09 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3674182 Jan 4 13:09 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' -scripts/kconfig/conf --silentoldconfig Kconfig - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CC fs/9p/vfs_super.o - CC fs/9p/vfs_inode.o - CC fs/9p/vfs_inode_dotl.o - CC fs/9p/vfs_addr.o - CC fs/9p/vfs_file.o - CC fs/9p/vfs_dir.o - CC fs/9p/vfs_dentry.o - CC fs/9p/v9fs.o - CC fs/9p/fid.o - CC fs/9p/xattr.o - GZIP kernel/config_data.gz - CC net/9p/mod.o - CC net/9p/client.o - CC net/9p/error.o - CC net/9p/util.o - CC net/9p/protocol.o - CC net/9p/trans_fd.o - CC net/9p/trans_common.o - CHK kernel/config_data.h - UPD kernel/config_data.h - CC kernel/configs.o - AR fs/9p/9p.o - AR fs/9p/built-in.o - AR fs/built-in.o - AR kernel/built-in.o - AR net/9p/9pnet.o - AR net/9p/built-in.o - AR net/built-in.o - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - CC arch/x86/boot/version.o - Building modules, stage 2. - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5989 kB -CRC 118439f5 -Kernel: arch/x86/boot/bzImage is ready (#102) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6148144 Jan 4 13:10 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 13:10:15 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ kcd linux -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ git grep gus.*RRE -[?2004l[?1h= net/9p/client.c: pr_err("bogus RREAD count (%d > %d)\n", count, rsize); -net/9p/client.c: pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize); -sound/isa/gus/gus_pcm.c: snd_gf1_write_addr(gus, SNDRV_GF1_VA_CURRENT, curr << 4, voice_ctrl & 4); -sound/isa/gus/gus_pcm.c: (snd_gf1_read_addr(gus, SNDRV_GF1_VA_CURRENT, voice_ctrl & 4) >> 4)); -sound/isa/gus/gus_pcm.c: (snd_gf1_read_addr(gus, SNDRV_GF1_VA_CURRENT, voice_ctrl & 4) >> 4)); -sound/isa/gus/gus_pcm.c: pos = (snd_gf1_read_addr(gus, SNDRV_GF1_VA_CURRENT, voice_ctrl & 4) >> 4) - pcmp->memory; -sound/isa/gus/gus_reset.c: snd_gf1_write_addr(gus, SNDRV_GF1_VA_CURRENT, daddr, w_16); - [?1l>[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ vi net/9p/client.c -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"net/9p/client.c" 2301L, 53762C▽ [>c]10;?]11;?/* - * net/9p/clnt.c - * - * 9P Client - * - * Copyright (C) 2008 by Eric Van Hensbergen - * Copyright (C) 2007 by Latchesar Ionkov - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to: - * Free Software Foundation - * 51 Franklin Street, Fifth Floor - * Boston, MA 02111-1301 USA - * - */ - -#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "protocol.h" - -#define CREATE_TRACE_POINTS -#include - -/* - * Client Option Parsing (code inspired by NFS code) - * - a little lazy - parse all client options - */ - -enum {Opt_msize,Opt_trans,Opt_legacy,Opt_version,Opt_err, -}; - -static const match_table_t tokens = {{Opt_msize, "msize=%u"},{Opt_legacy, "noextend"},{Opt_trans, "trans=%s"},{Opt_version, "version=%s"},{Opt_err, NULL}, -}; - -inline int p9_is_proto_dotl(struct p9_client *clnt) -{return clnt->proto_version == p9_proto_2000L; -} -EXPORT_SYMBOL(p9_is_proto_dotl); - -inline int p9_is_proto_dotu(struct p9_client *clnt) -{return clnt->proto_version == p9_proto_2000u; -} -EXPORT_SYMBOL(p9_is_proto_dotu); - -int p9_show_client_options(struct seq_file *m, struct p9_client *clnt)1,1Top]2;client.c (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux/net/9p) - VIM]1;client.c[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hu[?25l[?25hs[?25l[?25h.[?25l[?25h*[?25l[?25hR[?25l[?25hR[?25l[?25hE[?25l[?25h [?25lwhile (iov_iter_count(to)) {int count = iov_iter_count(to);int rsize, non_zc = 0;char *dataptr;rsize = fid->iounit;if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)rsize = clnt->msize - P9_IOHDRSZ;if (count < rsize)rsize = count;/* Don't bother zerocopy for small IO (< 1024) */if (clnt->trans_mod->zc_request && rsize > 1024) {/** response header len is 11* PDU Header(7) + IO Size (4)*/req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,0, 11, "dqd", fid->fid,offset, rsize);} else {non_zc = 1;req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,rsize);}if (IS_ERR(req)) {*err = PTR_ERR(req);break;}*err = p9pdu_readf(req->rc, clnt->proto_version,"D", &count, &dataptr);if (*err) {trace_9p_protocol_dump(clnt, req->rc);p9_free_req(clnt, req);break;}if (rsize < count) {pr_err("bogus RREAD count (%d > %d)\n", count, rsize);count = rsize;}p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);if (!count) {p9_free_req(clnt, req);break;}if (non_zc) {int n = copy_to_iter(dataptr, count, to);total += n;offset += n;if (n != count) {*err = -EFAULT;p9_free_req(clnt, req);break;}} else {iov_iter_advance(to, count);total += count;offset += count;}p9_free_req(clnt, req);}return total; -} -EXPORT_SYMBOL(p9_client_read); - -int -p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err) -{struct p9_client *clnt = fid->clnt;struct p9_req_t *req;int total = 0;*err = 0;p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",fid->fid, (unsigned long long) offset,iov_iter_count(from));1612,15-36 70%[?25h[?25l{}1,22[?25h[?25l{}{}0,3-17 [?25h[?25l{}09,9-30[?25h[?25l()8,15-36[?25h[?25l()7[?25h[?25l{}6,13-27[?25h[?25l{}5,8-36 [?25h[?25l4,22-36[?25h[?25l3,0-1 [?25h[?25l{}2,3-17[?25h[?25l{}1,9-30[?25h[?25l0,15-36[?25h[?25l{}599,20-34[?25h[?25l{}{}8,3-17 [?25h[?25l{}7,5-40[?25h[?25l6,15-36[?25h[?25l5,14-35[?25h[?25l{}4,10-24[?25h[?25l{}3,5-40 [?25h[?25l2[?25h[?25l1,15-36[?25h[?25l0,6-27 [?25h[?25l89,15-36[?25h[?25l8[?25h[?25l7,5-26 [?25h[?25l6,22-36[?25h[?25l5[?25h[?25l4,0-1 [?25h[?25l3,15-36[?25h[?25l()2,20-34[?25h[?25l()1,0-1 [?25h[?25l0,15-36[?25h[?25l79,22[?25h[?25l8[?25h[?25l7,3-24 [?25h[?25l6,16-30[?25h[?25l5,22-36[?25h[?25l4[?25h[?25l{}3,29[?25h[?25l{}2,0-1 [?25h[?25lfid->fid, (unsigned long long) offset, (int)iov_iter_count(to));1571,22-36 70%[?25h[?25lp9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",1570,29-36 70%[?25h[?25l1569,0-1 70%[?25h[?25l*err = 0;1568,10-17 70%[?25h[?25lint total = 0;1567,15-22 70%[?25h[?25lstruct p9_req_t *req;1566,22-29 70%[?25h[?25lstruct p9_client *clnt = fid->clnt;1565,29-36 70%[?25h[?25l{client *clnt = fid->clnt;struct p9_req_t *req;int total = 0;*err = 0;p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));while (iov_iter_count(to)) {count = iov_iter_count(to);int rsize, non_zc = 0;char *dataptr; rsize = fid->iounit;if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)rsize = clnt->msize - P9_IOHDRSZ;if (count < rsize)rsize = count;/* Don't bother zerocopy for small IO (< 1024) */if (clnt->trans_mod->zc_request && rsize > 1024) {/response header len is 11 PDU Header(7) + IO Size (4) */req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,0, 11, "dqd", fid->fid, offset, rsize);} else {non_zc = 1;req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset, rsize);}if (IS_ERR(req)) {*err = PTR_ERR(req); break;}*err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);if (*err) {trace_9p_protocol_dump(clnt, req->rc);p9_free_req(clnt, req); break;}if (rsize < count) {pr_err("bogus RREAD count (%d > %d)\n", count, rsize); count = rsize;}p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);if (!count) {p9_free_req(clnt, req); break;}if (non_zc) {int n = copy_to_iter(dataptr, count, to);total += n;offset += n;if (n != count) {*err = -EFAULT;p9_free_req(clnt, req); break; }} else {iov_iter_advance(to, count);total += count; offset += count;} p9_free_req(clnt, req);} return total; -}1564,170%[?25h[?25lp9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err) -{}1563,3670%[?25h[?25lint1562,370%[?25h[?25l1561,0-1 70%[?25h[?25lEXPORT_SYMBOL(p9_client_unlinkat);1560,3470%[?25h[?25l}1559,170%[?25h[?25lreturn err;1558,12-19 70%[?25h[?25lerror:1557,670%[?25h[?25lp9_free_req(clnt, req);1556,24-31 70%[?25h[?25l1555,0-1 70%[?25h[?25lp9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);1554,29-36 69%[?25h[?25l}1553,2-9 69%[?25h[?25lgoto error;1552,13-27 69%[?25h[?25lerr = PTR_ERR(req);1551,21-35 69%[?25h[?25lif (IS_ERR(req)) {err = PTR_ERR(req); goto error;}1550,19-26 69%[?25h[?25lreq = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);{}1549,29-36 69%[?25h[?25lclnt = dfid->clnt;1548,19-26 69%[?25h[?25l1547,0-1 69%[?25h[?25ldfid->fid, name, flags);1546,22-36 69%[?25h[?25lp9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",1545,29-36 69%[?25h[?25l1544,0-1 69%[?25h[?25l/[?2004h[?25hr[?25l[?25hs[?25l[?25hi[?25l[?25hz[?25l[?25he[?25l[?25h [?25l1575,7-21 69%[?25h[?25l1578,3-17 69%[?25h[?25l1579,8-22 69%[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ ls fs/9p -[?2004l9p.o cache.c fid.o modules.order v9fs_vfs.h vfs_dentry.o vfs_file.o vfs_inode.o xattr.h -acl.c cache.h Kconfig v9fs.c vfs_addr.c vfs_dir.c vfs_inode.c vfs_super.c xattr.o -acl.h fid.c Makefile v9fs.h vfs_addr.o vfs_dir.o vfs_inode_dotl.c vfs_super.o -built-in.o fid.h modules.builtin v9fs.o vfs_dentry.c vfs_file.c vfs_inode_dotl.o xattr.c -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ vi fs/9p/git grep -i errno fs/9p -[?2004l[?1h= fs/9p/fid.c:#include  -fs/9p/v9fs.c:#include  -fs/9p/v9fs.c: * Return 0 upon success, -ERRNO upon failure. -fs/9p/vfs_addr.c:#include  -fs/9p/vfs_dentry.c:#include  -fs/9p/vfs_dir.c:#include  -fs/9p/vfs_file.c:#include  -fs/9p/vfs_inode.c:#include  -fs/9p/vfs_inode_dotl.c:#include  -fs/9p/vfs_super.c:#include  - [?1l>[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ git grep -i errno fs/9pnet/9p/ -[?2004l[?1h= net/9p/client.c:#include  -net/9p/client.c:static int safe_errno(int err) -net/9p/client.c: if ((err > 0) || (err < -MAX_ERRNO)) { -net/9p/client.c: * Return 0 upon success, -ERRNO upon failure -net/9p/client.c: err = p9_errstr2errno(ename, strlen(ename)); -net/9p/client.c: err = p9_errstr2errno(ename, strlen(ename)); -net/9p/client.c: return ERR_PTR(safe_errno(err)); -net/9p/client.c: return ERR_PTR(safe_errno(err)); -net/9p/error.c:#include  -net/9p/error.c: * errstr2errno - convert error string to error number -net/9p/error.c:int p9_errstr2errno(char *errstr, int len) -net/9p/error.c: int errno; -net/9p/error.c: errno = 0; -net/9p/error.c: errno = c->val; -net/9p/error.c: if (errno == 0) { -net/9p/error.c: errno = ESERVERFAULT; -net/9p/error.c: return -errno; -net/9p/error.c:EXPORT_SYMBOL(p9_errstr2errno); -net/9p/mod.c:#include  -net/9p/protocol.c:#include  -net/9p/trans_fd.c:#include  -net/9p/trans_fd.c: * Returns 0 upon success, -ERRNO upon failure -net/9p/trans_rdma.c:#include  -net/9p/trans_rdma.c: * Returns 0 upon success, -ERRNO upon failure -net/9p/trans_virtio.c:#include  -net/9p/util.c:#include  - [?1l>[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ vi net/9p/error.c -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"net/9p/error.c" 247L, 7590C▽ [>c]10;?]11;?/* - * linux/fs/9p/error.c - * - * Error string handling - * - * Plan 9 uses error strings, Unix uses error numbers. These functions - * try to help manage that and provide for dynamically adding error - * mappings. - * - * Copyright (C) 2004 by Eric Van Hensbergen - * Copyright (C) 2002 by Ron Minnich - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to: - * Free Software Foundation - * 51 Franklin Street, Fifth Floor - * Boston, MA 02111-1301 USA - * - */ - -#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt - -#include -#include -#include -#include -#include - -/** - * struct errormap - map string errors from Plan 9 to Linux numeric ids - * @name: string sent over 9P - * @val: numeric id most closely representing @name - * @namelen: length of string - * @list: hash-table list for string lookup - */ -struct errormap {char *name;int val;int namelen;struct hlist_node list; -}; - -#define ERRHASHSZ32 -static struct hlist_head hash_errmap[ERRHASHSZ]; - -/* FixMe - reduce to a reasonable size */ -static struct errormap errmap[] = {{"Operation not permitted", EPERM},{"wstat prohibited", EPERM},{"No such file or directory", ENOENT},{"directory entry not found", ENOENT},{"file not found", ENOENT},{"Interrupted system call", EINTR},{"Input/output error", EIO},{"No such device or address", ENXIO},{"Argument list too long", E2BIG},{"Bad file descriptor", EBADF},{"Resource temporarily unavailable", EAGAIN},{"Cannot allocate memory", ENOMEM},{"Permission denied", EACCES},{"Bad address", EFAULT},{"Block device required", ENOTBLK},{"Device or resource busy", EBUSY},{"File exists", EEXIST},{"Invalid cross-device link", EXDEV},{"No such device", ENODEV},{"Not a directory", ENOTDIR},{"Is a directory", EISDIR},{"Invalid argument", EINVAL},{"Too many open files in system", ENFILE},{"Too many open files", EMFILE},1,1Top]2;error.c (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux/net/9p) - VIM]1;error.c[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l {"Too many open files in system", ENFILE}, - {"Too many open files", EMFILE}, - {"Text file busy", ETXTBSY}, - {"File too large", EFBIG}, - {"No space left on device", ENOSPC}, - {"Illegal seek", ESPIPE}, {"Read-only file system", EROFS}, {"Too many links", EMLINK}, - {"Broken pipe", EPIPE}, - {"Numerical argument out of domain", EDOM}, {"Numerical result out of range", ERANGE}, {"Resource deadlock avoided", EDEADLK}, - {"File name too long", ENAMETOOLONG}, {"No locks available", ENOLCK}, {"Function not implemented", ENOSYS}, {"Directory not empty", ENOTEMPTY}, - {"Too many levels of symbolic links", ELOOP}, {"No message of desired type", ENOMSG}, {"Identifier removed", EIDRM}, {"No data available", ENODATA}, {"Machine is not on the network", ENONET}, - {"Package not installed", ENOPKG}, {"Object is remote", EREMOTE}, {"Link has been severed", ENOLINK}, - {"Communication error on send", ECOMM}, - {"Protocol error", EPROTO}, - {"Bad message", EBADMSG}, - {"File descriptor in bad state", EBADFD},{"Streams pipe error", ESTRPIPE}, - {"Too many users", EUSERS},{"Socket operation on non-socket", ENOTSOCK}, - {"Message too long", EMSGSIZE}, - {"Protocol not available", ENOPROTOOPT}, - {"Protocol not supported", EPROTONOSUPPORT}, - {"Socket type not supported", ESOCKTNOSUPPORT}, - {"Operation not supported", EOPNOTSUPP},{"Protocol family not supported", EPFNOSUPPORT}, - {"Network is down", ENETDOWN}, - {"Network is unreachable", ENETUNREACH}, {"Network dropped connection on reset", ENETRESET}, - {"Software caused connection abort", ECONNABORTED}, - {"Connection reset by peer", ECONNRESET}, - {"No buffer space available", ENOBUFS}, - {"Transport endpoint is already connected", EISCONN}, - {"Transport endpoint is not connected", ENOTCONN},{"Cannot send after transport endpoint shutdown", ESHUTDOWN},{"Connection timed out", ETIMEDOUT},{"Connection refused", ECONNREFUSED},{"Host is down", EHOSTDOWN},{"No route to host", EHOSTUNREACH}, - {"Operation already in progress", EALREADY},{"Operation now in progress", EINPROGRESS}, - {"Is a named type file", EISNAM}, - {"Remote I/O error", EREMOTEIO},{"Disk quota exceeded", EDQUOT}, -/* errors from fossil, vacfs, and u9fs - {"fid unknown or out of range", EBADF},permission denied", EACCES},file does not exist", ENOENT},authentication failed", ECONNREFUSED},bad offset in directory read", ESPIPE},bad use of fid", EBADF},wstat can't convert between files and directories", EPERM},directory is not empty", ENOTEMPTY},file exists", EEXIST},file already exists", EEXIST},file or directory already exists", EEXIST},fid already in use", EBADF},file in use", ETXTBSY},i/o error", EIO},file already open for I/O", ETXTBSY},illegal mode", EINVAL}illegal name", ENAMETOOLONG},not a directory", ENOTDIR},not a member of proposed group", EPERM},not owner", EACCES},only owner can change group in wstat", EACCES},read only file system", EROFS},no access to special file", EPERM},i/o count too large", EIO},unknown group", EINVAL},80,2-947%[?25h[?25l/[?2004h[?25h [?25l80,2-947%[?25h[?25li/o count too large", EIO},unknown group", EINVAL},unknown user", EINVAL},bogus wstat buffer", EPROTO},exclusive use file already open", EAGAIN},corrupted directory entry", EIO},corrupted file entry", EIO},corrupted block label", EIO},corrupted meta data", EIO},illegal offset", EINVAL},illegal path element", ENOENT}root of file system is corrupted", EIO},corrupted super block", EIO},protocol botch", EPROTO},file system is full", ENOSPC},file is in use", EAGAIN},directory entry is not allocated", ENOENTfile is read only", EROFS},file has been removed", EIDRM},only support truncation to zero length", EPERM},cannot remove root", EPERM},file too big", EFBIG},venti i/o error", EIO},/* these are not errors */u9fs rhostsauth: no authentication required", 0},u9fs authnone: no authentication required", 0},NULL, -1}};/*** p9_error_init - preload mappings into hash list**/int p9_error_init(void){struct errormap *c;int bucket;/* initialize hash table */for (bucket = 0; bucket < ERRHASHSZ; bucket++) INIT_HLIST_HEAD(&hash_errmap[bucket]);/* load initial error map into hash table */for (c = errmap; c->name != NULL; c++) { c->namelen = strlen(c->name); bucket = jhash(c->name, c->namelen, 0) % ERRHASHSZ; INIT_HLIST_NODE(&c->list); hlist_add_head(&c->list, &hash_errmap[bucket]);}return 1;}EXPORT_SYMBOL(p9_error_init);** errstr2errno - convert error string to error number - * @errstr: error string* @len: length of error string**/int p9_errstr2errno(char *errstr, int len){int errno;struct errormap *c;int bucket;errno = 0;c = NULL;bucket = jhash(errstr, len, 0) % ERRHASHSZ;hlist_for_each_entry(c, &hash_errmap[bucket], list) { if (c->namelen == len && !memcmp(c->name, errstr, len)) { errno = c->val; break; }}if (errno == 0) { /* TODO: if error isn't found, add it dynamically */ errstr[len] = 0;159,2-995[?25h[?25lno access to special file", EPERM},{"i/o count too large", EIO},158,2-994%[?25h[?25lread only file system", EROFS},{"no access to special file", EPERM},157,2-993%[?25h[?25lonly owner can change group in wstat", EACCES},{"read only file system", EROFS},156,2-993%[?25h[?25lnot owner", EACCES},{"only owner can change group in wstat", EACCES},155,2-992%[?25h[?25la member of proposed group", EPERM},{"not owner", EACCES},154,2-992%[?25h[?25ldirectory", ENOTDIR},{"not a member of proposed group", EPERM},153,2-991%[?25h[?25lillegal name", ENAMETOOLONG},{"not a directory", ENOTDIR},152,2-990%[?25h[?25lmode", EINVAL},{"illegal name", ENAMETOOLONG},151,2-990%[?25h[?25lfile already open for I/O", ETXTBSY},{"illegal mode", EINVAL},150,2-989%[?25h[?25li/o error", EIO},{"file already open for I/O", ETXTBSY},149,2-989%[?25h[?25lfile in use", ETXTBSY},{"i/o error", EIO},148,2-988%[?25h[?25ld already in use", EBADF},{"file in use", ETXTBSY},147,2-987%[?25h[?25lle or directory already exists", EEXIST},{"fid already in use", EBADF},146,2-987%[?25h[?25lalready exists", EEXIST},{"file or directory already exists", EEXIST},145,2-986%[?25h[?25lexists", EEXIST},{"file already exists", EEXIST},144,2-986%[?25h[?25ldirectory is not empty", ENOTEMPTY},{"file exists", EEXIST},143,2-985%[?25h[?25lwstat can't convert between files and directories", EPERM},{"directory is not empty", ENOTEMPTY},142,2-984%[?25h[?25lbad use of fid", EBADF},{"wstat can't convert between files and directories", EPERM},141,2-984%[?25h[?25loffset in directory read", ESPIPE},{"bad use of fid", EBADF},140,2-983%[?25h[?25lauthentication failed", ECONNREFUSED},{"bad offset in directory read", ESPIPE},139,2-983%[?25h[?25lfile does not exist", ENOENT},{"authentication failed", ECONNREFUSED},138,2-982%[?25h[?25lpermission denied", EACCES},{"file does not exist", ENOENT},137,2-981%[?25h[?25lfid unknown or out of range", EBADF},{"permission denied", EACCES},136,2-981%[?25h[?25l/* errors from fossil, vacfs, and u9fs */{}135,980%[?25h[?25l{"Disk quota exceeded", EDQUOT},134,2-980%[?25h[?25lRemote I/O error", EREMOTEIO{"Disk quota exceeded", EDQUOT},133,2-979%[?25h[?25lIs a named type file", EISNAM},{"Remote I/O error", EREMOTEIO},132,2-978%[?25h[?25lOperation now in progress", EINPROGRESS},{"Is a named type file", EISNAM},131,2-978%[?25h[?25lalready in progress", EALREADY},{"Operation now in progress", EINPROGRESS},130,2-977%[?25h[?25lNo route to host", EHOSTUNREACH},{"Operation already in progress", EALREADY},129,2-977%[?25h[?25lHost is down", EHOSTDOWN},{"No route to host", EHOSTUNREACH},128,2-976%[?25h[?25lConnection refused", ECONNREFUSED},{"Host is down", EHOSTDOWN},127,2-975%[?25h[?25ltimed out", ETIMEDOUT},{"Connection refused", ECONNREFUSED},126,2-975%[?25h[?25lannot send after transport endpoint shutdown", ESHUTDOWN},{"Connection timed out", ETIMEDOUT},125,2-974%[?25h[?25lTransport endpoint is not connected", ENOTCONN},{"Cannot send after transport endpoint shutdown", ESHUTDOWN},124,2-974%[?25h[?25lalready connected", EISCONN},{"Transport endpoint is not connected", ENOTCONN},123,2-973%[?25h[?25lNo buffer space available", ENOBUFS},{"Transport endpoint is already connected", EISCONN},122,2-972%[?25h[?25lConnection reset by peer", ECONNRESET},{"No buffer space available", ENOBUFS},121,2-972%[?25h[?25lSoftware caused connection abort", ECONNABORTED},{"Connection reset by peer", ECONNRESET},120,2-971%[?25h[?25lNetwork droppon reset", ENETRESET{"Software caused connection abort", ECONNABORTED},119,2-971%[?25h[?25lis unreachable", ENETUNREACH},{"Network dropped connection on reset", ENETRESET},118,2-970%[?25h[?25ldown", ENETDOWN},{"Network is unreachable", ENETUNREACH},117,2-969%[?25h[?25lProtocol family not supported", EPFNOSUPPORT},{"Network is down", ENETDOWN},116,2-969%[?25h[?25lOperation not supported", EOPNOTSUPP},{"Protocol family not supported", EPFNOSUPPORT},115,2-968%[?25h[?25lSocket type not supported", ESOCKTNOSUPPORT},{"Operation not supported", EOPNOTSUPP},114,2-968%[?25h[?25lProtocol not supported", EPROTONOSUPPORT},{"Socket type not supported", ESOCKTNOSUPPORT},113,2-967%[?25h[?25lavailable", ENOPROTOOPT},{"Protocol not supported", EPROTONOSUPPORT},112,2-966%[?25h[?25lMessage too long", EMSGSIZE},{"Protocol not available", ENOPROTOOPT},111,2-966%[?25h[?25lSocket operation on non-socket", ENOTSOCK},{"Message too long", EMSGSIZE},110,2-965%[?25h[?25lToo many users", EUSERS},{"Socket operation on non-socket", ENOTSOCK},109,2-965%[?25h[?25lStreams pipe error", ESTRPIPE},{"Too many users", EUSERS},108,2-964%[?25h[?25lFile descriptor in bad state", EBADFD},{"Streams pipe error", ESTRPIPE},107,2-963%[?25h[?25lBad message", EBADMSG},{"File descriptor in bad state", EBADFD},106,2-963%[?25h[?25lProtocol error", EPROTO},{"Bad message", EBADMSG},105,2-962%[?25h[?25lCommunication error on send", ECOMM},{"Protocol error", EPROTO},104,2-962%[?25h[?25lLink has been severed", ENOLINK},{"Communication error on send", ECOMM},103,2-961%[?25h[?25lObject is remote", EREMOTE},{"Link has been severed", ENOLINK},102,2-960%[?25h[?25lPackage not installed", ENOPKG},{"Object is remote", EREMOTE},101,2-960%[?25h[?25lMachine is not on the network", ENONET},{"Package not installed", ENOPKG},100,2-959%[?25h[?25lNo data available", ENODATA},{"Machine is not on the network", ENONET},99,2-959%[?25h[?25lIdentifier removed", EIDRM},{"No data available", ENODATA},98,2-958%[?25h[?25lNo message of desired type", ENOMSG},{"Identifier removed", EIDRM},97,2-957%[?25h[?25lToo many levels of symbolic links", ELOOP},{"No message of desired type", ENOMSG},96,2-957%[?25h[?25lDirectory not empty", ENOTEMPTY},{"Too many levels of symbolic links", ELOOP},95,2-956%[?25h[?25lFunction not implemented", ENOSYS},{"Directory not empty", ENOTEMPTY},94,2-956%[?25h[?25lNo locks available", ENOLCK},{"Function not implemented", ENOSYS},93,2-955%[?25h[?25lFile name too long", ENAMETOOLONG},{"No locks available", ENOLCK},92,2-954%[?25h[?25lResource deadlock avoided", EDEADLK},{"File name too long", ENAMETOOLONG},91,2-954%[?25h[?25lNumerical result out of range", ERANGE},{"Resource deadlock avoided", EDEADLK},90,2-953%[?25h[?25largument out of domain", EDOM},{"Numerical result out of range", ERANGE},89,2-953%[?25h[?25lBroken pipe", EPIPE},{"Numerical argument out of domain", EDOM},88,2-952%[?25h[?25lToo many links", EMLINK},{"Broken pipe", EPIPE},87,2-951%[?25h[?25lRead-only file system", EROFS},{"Too many links", EMLINK},86,2-951%[?25h[?25lIllegal seek", ESPIPE}{"Read-only file system", EROFS},85,2-950%[?25h[?25lNo space left on device", ENOSPC},{"Illegal seek", ESPIPE},84,2-950%[?25h[?25lFile too large", EFBIG},{"No space left on device", ENOSPC},83,2-949%[?25h[?25lText file busy", ETXTBSY},{"File too large", EFBIG},82,2-948%[?25h[?25loo many open files", EMFILE},{"Text file busy", ETXTBSY},81,2-948%[?25h[?25l in system", ENFILE},{"Too many open files", EMFILE},80,2-947%[?25h[?25lInvalid argument", EINVAL},{"Too many open files in system", ENFILE},79,2-946%[?25h[?25ls a directory", EISDIR},{"Invalid argument", EINVAL},78,2-946%[?25h[?25lNot a directory", ENOTDIR},{"Is a directory", EISDIR},77,2-945%[?25h[?25l such device", ENODEV},{"Not a directory", ENOTDIR},76,2-945%[?25h[?25lInvalid cross-device link", EXDEV},{"No such device", ENODEV},75,2-944%[?25h[?25lFile exists", EEXIST},{"Invalid cross-device link", EXDEV},74,2-943%[?25h[?25lDevice or resource busy", EBUSY},{"File exists", EEXIST},73,2-943%[?25h[?25lBlock device required", ENOTBLK{"Device or resource busy", EBUSY},72,2-942%[?25h[?25lad address", EFAULT},{"Block device required", ENOTBLK},71,2-942%[?25h[?25lPermission denied", EACCES},{"Bad address", EFAULT},70,2-941%[?25h[?25lCannot allocate memory", ENOMEM},{"Permission denied", EACCES},69,2-940%[?25h[?25lResource temporarily unavailable", EAGAIN},{"Cannot allocate memory", ENOMEM},68,2-940%[?25h[?25lBad file descriptor", EBADF},{"Resource temporarily unavailable", EAGAIN},67,2-939%[?25h[?25lArgument list too long", E2BIG},{"Bad file descriptor", EBADF},66,2-939%[?25h[?25lNo such device or address", ENXIO},{"Argument list too long", E2BIG},65,2-938%[?25h[?25lInput/output error", EIO},{"No such device or address", ENXIO},64,2-937%[?25h[?25lterrupted system call", EINTR},{"Input/output error", EIO},63,2-937%[?25h[?25lfile not found", ENOENT}{"Interrupted system call", EINTR},62,2-936%[?25h[?25ldirectory entry not found", ENOENT},{"file not found", ENOENT},61,2-936%[?25h[?25lNo such file or directory{"directory entry not found", ENOENT},60,2-935%[?25h[?25lwstat prohibited", EPERM},{"No such file or directory", ENOENT},59,2-934%[?25h[?25lOperation not permitted", EPERM},{"wstat prohibited", EPERM},58,2-934%[?25h[?25lstatic struct errormap errmap[] = {{}57,933%[?25h[?25l/* FixMe - reduce to a reasonable size */56,933%[?25h[?25l55,0-132%[?25h[?25lstatic struct hlist_head hash_errmap[ERRHASHSZ];54,931%[?25h[?25l#define ERRHASHSZ3253,931%[?25h[?25l52,0-130%[?25h[?25l};51,230%[?25h[?25lstruct hlist_node list;50,2-929%[?25h[?25lint namelen;49,2-928%[?25h[?25l48,0-128%[?25h[?25lint val;47,2-927%[?25h[?25lchar *name;46,2-927%[?25h[?25lstruct errormap {45,926%[?25h[?25l6,2-9[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,2-9[?25h[?25l50[?25h[?25l1,2 [?25h[?25l2,0-1[?25h[?25l3,9 [?25h[?25l4[?25h[?25l5,0-1[?25h[?25l6,9 [?25h[?25l7[?25h[?25l{}8,2-9[?25h[?25l{}{}9[?25h[?25l{}{}60[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l{}{}3[?25h[?25l{}{}4[?25h[?25l{}{}5[?25h[?25l/[?2004h[?25he[?25l[?25hn[?25l[?25hf[?25l[?25h[?25l [?25ho[?25l[?25hf[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25hd[?25l[?25h[?25l [?25ho[?25l[?25hf[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: end of65,2-926%[?25h[?25l/[?2004h[?25hE[?25l[?25hn[?25l[?25hd[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: End65,2-926%[?25h[?25l/[?2004h[?25hE[?25l[?25hO[?25l[?25hF[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: EOF65,2-926%[?25h[?25l/[?2004h[?25he[?25l[?25ho[?25l[?25hf[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: eof65,2-926%[?25h[?25l{}{}6[?25h[?25l{}{}7[?25h[?25l{}{}8[?25h[?25l{}{}9[?25h[?25l{}{}70[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l{}{}3[?25h[?25l{}{}4[?25h[?25l{}{}5[?25h[?25l{}{}6[?25h[?25l{}{}7[?25h[?25l{}{}8[?25h[?25l{}{}9[?25h[?25l{}{}80[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l{}{}3[?25h[?25l{}{}4[?25h[?25l{}{}5[?25h[?25l{}{}6[?25h[?25l {"Transport endpoint is not connected", ENOTCONN},{"Cannot send after transport endpoint shutdown", ESHUTDOWN},{"Connection timed out", ETIMEDOUT},{"Connection refused", ECONNREFUSED},{"Host is down", EHOSTDOWN},{"No route to host", EHOSTUNREACH}, - {"Operation already in progress", EALREADY},{"Operation now in progress", EINPROGRESS}, - {"Is a named type file", EISNAM}, - {"Remote I/O error", EREMOTEIO},{"Disk quota exceeded", EDQUOT}, -/* errors from fossil, vacfs, and u9fs - {"fid unknown or out of range", EBADF},permission denied", EACCES},file does not exist", ENOENT},authentication failed", ECONNREFUSED},bad offset in directory read", ESPIPE},bad use of fid", EBADF},wstat can't convert between files and directories", EPERM},directory is not empty", ENOTEMPTY},file exists", EEXIST},file already exists", EEXIST},file or directory already exists", EEXIST},fid already in use", EBADF},file in use", ETXTBSY},i/o error", EIO},file already open for I/O", ETXTBSY},illegal mode", EINVAL}illegal name", ENAMETOOLONG},not a directory", ENOTDIR},not a member of proposed group", EPERM},not owner", EACCES},only owner can change group in wstat", EACCES},read only file system", EROFS},no access to special file", EPERM},i/o count too large", EIO},unknown group", EINVAL},unknown user", EINVAL},bogus wstat buffer", EPROTO},exclusive use file already open", EAGAIN},corrupted directory entry", EIO},{"corrupted file entry", EIO},corrupted block label", EIO},corrupted meta data", EIO},illegal offset", EINVAL},illegal path element", ENOENT}root of file system is corrupted", EIO},corrupted super block", EIO},protocol botch", EPROTO},file system is full", ENOSPC},file is in use", EAGAIN},directory entry is not allocated", ENOENTfile is read only", EROFS},file has been removed", EIDRM},only support truncation to zero length", EPERM},cannot remove root", EPERM},file too big", EFBIG},venti i/o error", EIO},/* these are not errors */u9fs rhostsauth: no authentication required", 0},u9fs authnone: no authentication required", 0},NULL, -1}};/*** p9_error_init - preload mappings into hash list**/int p9_error_init(void){struct errormap *c;int bucket;/* initialize hash table */for (bucket = 0; bucket < ERRHASHSZ; bucket++) INIT_HLIST_HEAD(&hash_errmap[bucket]);/* load initial error map into hash table */for (c = errmap; c->name != NULL; c++) { c->namelen = strlen(c->name);124,2-974[?25h[?25l{}{}5[?25h[?25l{}{}6[?25h[?25l{}{}7[?25h[?25l{}{}8[?25h[?25l{}{}9[?25h[?25l{}{}30[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l{}{}3[?25h[?25l{}{}4[?25h[?25l{}5,9 [?25h[?25l{}6,2-9[?25h[?25l{}{}7[?25h[?25l{}{}8[?25h[?25l{}{}9[?25h[?25l{}{}40[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ [?2004l[?2004h[?2004lexit - -Script done on 2019-01-08 09:37:34-0800 diff --git a/mainboards/tyan7106/RUN4 b/mainboards/tyan7106/RUN4 deleted file mode 100644 index ea734acf..00000000 --- a/mainboards/tyan7106/RUN4 +++ /dev/null @@ -1,12116 +0,0 @@ -Script started on 2018-12-20 12:38:28-0800 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d4 -[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean -2018/12/20 12:38:32 Found 310 things -2018/12/20 12:38:32 script is ./DXECLEANER -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8) -2018/12/20 12:38:42 removed [0xc000025200] -+ echo TEST /tmp/futk925337781/1 -TEST /tmp/futk925337781/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707 -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614 -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 We are now done ...................... -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2018/12/20 12:44:44 removed [0xc0084f8b00] -+ echo TEST /tmp/futk925337781/2 -TEST /tmp/futk925337781/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:46:03 Listening on 192.168.0.1:8080 at 2018-12-20 12:46:03.780886704 -0800 PST m=+0.005034144 -2018/12/20 12:48:24 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:50:31 Accepted &{{0xc00013a080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 12:50:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/2 -2018/12/20 12:50:31 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2018/12/20 12:50:31 removed [0xc000025c80] -+ echo TEST /tmp/futk925337781/3 -TEST /tmp/futk925337781/3 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/3 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:51:50 Listening on 192.168.0.1:8080 at 2018-12-20 12:51:50.227456387 -0800 PST m=+0.005158566 -2018/12/20 12:54:14 Accepted &{{0xc000148080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:56:20 Accepted &{{0xc000148180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 12:56:20 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3 -2018/12/20 12:56:20 Try to remove 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell (7C04A583-9E3E-4F1C-AD65-E05268D0B4D1) -2018/12/20 12:56:20 removed [0xc0081d1c80] -+ echo TEST /tmp/futk925337781/4 -TEST /tmp/futk925337781/4 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/4 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:57:35 Listening on 192.168.0.1:8080 at 2018-12-20 12:57:35.623116445 -0800 PST m=+0.005039982 -2018/12/20 13:00:35 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 13:00:35.623594932 -0800 PST m=+180.005518262 -2018/12/20 13:00:35 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 13:00:35 We are now done ...................... -2018/12/20 13:00:35 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 13:00:35 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2018/12/20 13:00:35 removed [0xc000024180] -+ echo TEST /tmp/futk925337781/5 -TEST /tmp/futk925337781/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/5 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:01:54 Listening on 192.168.0.1:8080 at 2018-12-20 13:01:54.539280467 -0800 PST m=+0.004759517 -2018/12/20 13:04:18 Accepted &{{0xc000136080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:06:24 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:06:24 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/5 -2018/12/20 13:06:24 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2018/12/20 13:06:24 removed [0xc008190280] -+ echo TEST /tmp/futk925337781/6 -TEST /tmp/futk925337781/6 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/6 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:07:42 Listening on 192.168.0.1:8080 at 2018-12-20 13:07:42.852856141 -0800 PST m=+0.004094102 -2018/12/20 13:10:06 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:12:12 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:12:12 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6 -2018/12/20 13:12:12 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2018/12/20 13:12:12 removed [0xc008191a80] -+ echo TEST /tmp/futk925337781/7 -TEST /tmp/futk925337781/7 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/7 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:13:31 Listening on 192.168.0.1:8080 at 2018-12-20 13:13:31.437604493 -0800 PST m=+0.004177998 -2018/12/20 13:15:54 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:18:00 Accepted &{{0xc00014e080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:18:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/7 -2018/12/20 13:18:00 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2018/12/20 13:18:00 removed [0xc008191380] -+ echo TEST /tmp/futk925337781/8 -TEST /tmp/futk925337781/8 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/8 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:19:19 Listening on 192.168.0.1:8080 at 2018-12-20 13:19:19.603503008 -0800 PST m=+0.004415854 -2018/12/20 13:21:43 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:23:49 Accepted &{{0xc00013a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:23:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/8 -2018/12/20 13:23:49 Try to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP (74346897-9E0C-4B41-BF1F-BAA1ECB85DA6) -2018/12/20 13:23:49 removed [0xc000025d00] -+ echo TEST /tmp/futk925337781/9 -TEST /tmp/futk925337781/9 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/9 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:25:07 Listening on 192.168.0.1:8080 at 2018-12-20 13:25:07.76282306 -0800 PST m=+0.004422579 -2018/12/20 13:27:31 Accepted &{{0xc000148100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:29:37 Accepted &{{0xc000148200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:29:37 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9 -2018/12/20 13:29:37 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2018/12/20 13:29:37 removed [0xc008191480] -+ echo TEST /tmp/futk925337781/10 -TEST /tmp/futk925337781/10 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/10 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:30:56 Listening on 192.168.0.1:8080 at 2018-12-20 13:30:56.15073056 -0800 PST m=+0.004445203 -2018/12/20 13:33:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:35:25 Accepted &{{0xc00018a000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:35:25 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/10 -2018/12/20 13:35:25 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2018/12/20 13:35:25 removed [0xc008191980] -+ echo TEST /tmp/futk925337781/11 -TEST /tmp/futk925337781/11 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/11 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:36:43 Listening on 192.168.0.1:8080 at 2018-12-20 13:36:43.750202933 -0800 PST m=+0.004256668 -2018/12/20 13:39:07 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:41:13 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:41:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/11 -2018/12/20 13:41:13 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2018/12/20 13:41:13 removed [0xc0084f8500] -+ echo TEST /tmp/futk925337781/12 -TEST /tmp/futk925337781/12 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/12 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:42:32 Listening on 192.168.0.1:8080 at 2018-12-20 13:42:32.023047406 -0800 PST m=+0.003844326 -2018/12/20 13:44:55 Accepted &{{0xc00015c000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:47:01 Accepted &{{0xc000148100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:47:01 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12 -2018/12/20 13:47:01 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2018/12/20 13:47:01 removed [0xc008190a80] -+ echo TEST /tmp/futk925337781/13 -TEST /tmp/futk925337781/13 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/13 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:48:20 Listening on 192.168.0.1:8080 at 2018-12-20 13:48:20.25521162 -0800 PST m=+0.005265737 -2018/12/20 13:50:43 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:52:49 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:52:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/13 -2018/12/20 13:52:49 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2018/12/20 13:52:49 removed [0xc008191100] -+ echo TEST /tmp/futk925337781/14 -TEST /tmp/futk925337781/14 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/14 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:54:08 Listening on 192.168.0.1:8080 at 2018-12-20 13:54:08.051297567 -0800 PST m=+0.004703264 -2018/12/20 13:56:31 Accepted &{{0xc00014e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:58:37 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:58:37 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/14 -2018/12/20 13:58:37 Try to remove 9F3A0016-AE55-4288-829D-D55FD3AAC347:EFI_FV_FILETYPE_DRIVER:AmiBoardInfo2 (9F3A0016-AE55-4288-829D-D55FD3AAC347) -2018/12/20 13:58:37 removed [0xc000025180] -+ echo TEST /tmp/futk925337781/15 -TEST /tmp/futk925337781/15 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/15 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:59:55 Listening on 192.168.0.1:8080 at 2018-12-20 13:59:55.875862819 -0800 PST m=+0.005233399 -2018/12/20 14:02:55 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:02:55.876362681 -0800 PST m=+180.005733076 -2018/12/20 14:02:55 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:02:55 We are now done ...................... -2018/12/20 14:02:55 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:02:55 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2018/12/20 14:02:55 removed [0xc000025900] -+ echo TEST /tmp/futk925337781/16 -TEST /tmp/futk925337781/16 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/16 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:04:14 Listening on 192.168.0.1:8080 at 2018-12-20 14:04:14.279108354 -0800 PST m=+0.004512363 -2018/12/20 14:06:38 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:08:44 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:08:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16 -2018/12/20 14:08:44 Try to remove E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017:EFI_FV_FILETYPE_DRIVER:PciPlatform (E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017) -2018/12/20 14:08:44 removed [0xc000025580] -+ echo TEST /tmp/futk925337781/17 -TEST /tmp/futk925337781/17 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/17 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:10:02 Listening on 192.168.0.1:8080 at 2018-12-20 14:10:02.898391295 -0800 PST m=+0.005366065 -2018/12/20 14:13:02 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:13:02.898837903 -0800 PST m=+180.005812477 -2018/12/20 14:13:02 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:13:02 We are now done ...................... -2018/12/20 14:13:02 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:13:02 Try to remove 16D0A23E-C09C-407D-A14A-AD058FDD0CA1:EFI_FV_FILETYPE_DRIVER:ACPI (16D0A23E-C09C-407D-A14A-AD058FDD0CA1) -2018/12/20 14:13:02 removed [0xc000024d00] -+ echo TEST /tmp/futk925337781/18 -TEST /tmp/futk925337781/18 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/18 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:14:21 Listening on 192.168.0.1:8080 at 2018-12-20 14:14:21.227350863 -0800 PST m=+0.004798021 -2018/12/20 14:17:21 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:17:21.227773117 -0800 PST m=+180.005220134 -2018/12/20 14:17:21 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:17:21 We are now done ...................... -2018/12/20 14:17:21 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:17:21 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2018/12/20 14:17:21 removed [0xc000025080] -+ echo TEST /tmp/futk925337781/19 -TEST /tmp/futk925337781/19 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/19 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:18:39 Listening on 192.168.0.1:8080 at 2018-12-20 14:18:39.454710481 -0800 PST m=+0.005468106 -2018/12/20 14:20:59 Accepted &{{0xc000166000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:23:05 Accepted &{{0xc00014c100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:23:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/19 -2018/12/20 14:23:05 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2018/12/20 14:23:05 removed [0xc000024f80] -+ echo TEST /tmp/futk925337781/20 -TEST /tmp/futk925337781/20 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/20 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:24:23 Listening on 192.168.0.1:8080 at 2018-12-20 14:24:23.70163879 -0800 PST m=+0.005006947 -2018/12/20 14:26:47 Accepted &{{0xc000160100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:28:52 Accepted &{{0xc000160200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:28:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/20 -2018/12/20 14:28:52 Try to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe (BDCE85BB-FBAA-4F4E-9264-501A2C249581) -2018/12/20 14:28:52 removed [0xc000024d80] -+ echo TEST /tmp/futk925337781/21 -TEST /tmp/futk925337781/21 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/21 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:30:10 Listening on 192.168.0.1:8080 at 2018-12-20 14:30:10.891835915 -0800 PST m=+0.005548472 -2018/12/20 14:32:34 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:34:40 Accepted &{{0xc000156080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:34:40 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/21 -2018/12/20 14:34:40 Try to remove 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe (80CF7257-87AB-47F9-A3FE-D50B76D89541) -2018/12/20 14:34:40 removed [0xc0084f8380] -+ echo TEST /tmp/futk925337781/22 -TEST /tmp/futk925337781/22 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/22 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:35:58 Listening on 192.168.0.1:8080 at 2018-12-20 14:35:58.491482834 -0800 PST m=+0.003533855 -2018/12/20 14:38:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:38:58.491841772 -0800 PST m=+180.003892685 -2018/12/20 14:38:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:38:58 We are now done ...................... -2018/12/20 14:38:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:38:58 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2018/12/20 14:38:58 removed [0xc008191900] -+ echo TEST /tmp/futk925337781/23 -TEST /tmp/futk925337781/23 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/23 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:40:16 Listening on 192.168.0.1:8080 at 2018-12-20 14:40:16.584140961 -0800 PST m=+0.005293856 -2018/12/20 14:42:40 Accepted &{{0xc000146080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:44:46 Accepted &{{0xc00014c100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:44:46 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/23 -2018/12/20 14:44:46 Try to remove DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe (DE5FC8BF-06ED-4DC5-BA9D-29F711699A85) -2018/12/20 14:44:46 removed [0xc008191200] -+ echo TEST /tmp/futk925337781/24 -TEST /tmp/futk925337781/24 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/24 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:46:04 Listening on 192.168.0.1:8080 at 2018-12-20 14:46:04.680644696 -0800 PST m=+0.005399078 -2018/12/20 14:48:28 Accepted &{{0xc000142080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:50:33 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:50:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24 -2018/12/20 14:50:33 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2018/12/20 14:50:33 removed [0xc000025880] -+ echo TEST /tmp/futk925337781/25 -TEST /tmp/futk925337781/25 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/25 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:51:52 Listening on 192.168.0.1:8080 at 2018-12-20 14:51:52.161382596 -0800 PST m=+0.002835227 -2018/12/20 14:54:12 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:56:17 Accepted &{{0xc00014a100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:56:17 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/25 -2018/12/20 14:56:17 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2018/12/20 14:56:17 removed [0xc008191400] -+ echo TEST /tmp/futk925337781/26 -TEST /tmp/futk925337781/26 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/26 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:57:36 Listening on 192.168.0.1:8080 at 2018-12-20 14:57:36.140896232 -0800 PST m=+0.004997766 -2018/12/20 14:59:59 Accepted &{{0xc000150100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:02:05 Accepted &{{0xc000150200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:02:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/26 -2018/12/20 15:02:05 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2018/12/20 15:02:05 removed [0xc0084f8580] -+ echo TEST /tmp/futk925337781/27 -TEST /tmp/futk925337781/27 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/27 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:03:23 Listening on 192.168.0.1:8080 at 2018-12-20 15:03:23.554884706 -0800 PST m=+0.004972462 -2018/12/20 15:05:47 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:07:52 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:07:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/27 -2018/12/20 15:07:52 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2018/12/20 15:07:52 removed [0xc008190680] -+ echo TEST /tmp/futk925337781/28 -TEST /tmp/futk925337781/28 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/28 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:09:10 Listening on 192.168.0.1:8080 at 2018-12-20 15:09:10.874233313 -0800 PST m=+0.004453773 -2018/12/20 15:11:35 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:13:41 Accepted &{{0xc00014c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:13:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28 -2018/12/20 15:13:41 Try to remove AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 (AA7B4695-00B4-4468-AD92-99370AC031C5) -2018/12/20 15:13:41 removed [0xc000025500] -+ echo TEST /tmp/futk925337781/29 -TEST /tmp/futk925337781/29 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/29 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:14:59 Listening on 192.168.0.1:8080 at 2018-12-20 15:14:59.488662872 -0800 PST m=+0.004774153 -2018/12/20 15:17:22 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:20:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 15:20:22.574051137 -0800 PST m=+323.090162248 -2018/12/20 15:20:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 15:20:22 We are now done ...................... -2018/12/20 15:20:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 15:20:22 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2018/12/20 15:20:22 removed [0xc000025400] -+ echo TEST /tmp/futk925337781/30 -TEST /tmp/futk925337781/30 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/30 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:21:41 Listening on 192.168.0.1:8080 at 2018-12-20 15:21:41.383482233 -0800 PST m=+0.002904115 -2018/12/20 15:24:05 Accepted &{{0xc000158000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:26:10 Accepted &{{0xc000146100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:26:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/30 -2018/12/20 15:26:10 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2018/12/20 15:26:10 removed [0xc008191580] -+ echo TEST /tmp/futk925337781/31 -TEST /tmp/futk925337781/31 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/31 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:27:29 Listening on 192.168.0.1:8080 at 2018-12-20 15:27:29.258208759 -0800 PST m=+0.005189823 -2018/12/20 15:29:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:31:58 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:31:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/31 -2018/12/20 15:31:58 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2018/12/20 15:31:58 removed [0xc000024400] -+ echo TEST /tmp/futk925337781/32 -TEST /tmp/futk925337781/32 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/32 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:33:17 Listening on 192.168.0.1:8080 at 2018-12-20 15:33:17.128157519 -0800 PST m=+0.004507699 -2018/12/20 15:35:40 Accepted &{{0xc00014c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:37:46 Accepted &{{0xc00014c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:37:46 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/32 -2018/12/20 15:37:46 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2018/12/20 15:37:46 removed [0xc000024e00] -+ echo TEST /tmp/futk925337781/33 -TEST /tmp/futk925337781/33 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/33 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:39:05 Listening on 192.168.0.1:8080 at 2018-12-20 15:39:05.286626817 -0800 PST m=+0.004493377 -2018/12/20 15:41:28 Accepted &{{0xc00014a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:43:34 Accepted &{{0xc00014a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:43:34 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33 -2018/12/20 15:43:34 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2018/12/20 15:43:34 removed [0xc008191280] -+ echo TEST /tmp/futk925337781/34 -TEST /tmp/futk925337781/34 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/34 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:44:53 Listening on 192.168.0.1:8080 at 2018-12-20 15:44:53.383915713 -0800 PST m=+0.004908909 -2018/12/20 15:47:17 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:49:22 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:49:22 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/34 -2018/12/20 15:49:22 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2018/12/20 15:49:22 removed [0xc000025f00] -+ echo TEST /tmp/futk925337781/35 -TEST /tmp/futk925337781/35 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/35 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:50:41 Listening on 192.168.0.1:8080 at 2018-12-20 15:50:41.334210235 -0800 PST m=+0.005179862 -2018/12/20 15:53:04 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:55:10 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:55:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35 -2018/12/20 15:55:10 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2018/12/20 15:55:10 removed [0xc000024b00] -+ echo TEST /tmp/futk925337781/36 -TEST /tmp/futk925337781/36 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/36 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:56:28 Listening on 192.168.0.1:8080 at 2018-12-20 15:56:28.978216852 -0800 PST m=+0.004335817 -2018/12/20 15:58:52 Accepted &{{0xc000154100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:00:58 Accepted &{{0xc000154200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:00:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/36 -2018/12/20 16:00:58 Try to remove A0BAD9F7-AB78-491B-B583-C52B7F84B9E0:EFI_FV_FILETYPE_DRIVER:SmmControl (A0BAD9F7-AB78-491B-B583-C52B7F84B9E0) -2018/12/20 16:00:58 removed [0xc008191080] -+ echo TEST /tmp/futk925337781/37 -TEST /tmp/futk925337781/37 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/37 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:02:16 Listening on 192.168.0.1:8080 at 2018-12-20 16:02:16.903857431 -0800 PST m=+0.005434827 -2018/12/20 16:05:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:05:16.904347909 -0800 PST m=+180.005925115 -2018/12/20 16:05:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:05:16 We are now done ...................... -2018/12/20 16:05:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:05:16 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2018/12/20 16:05:16 removed [0xc000025b00] -+ echo TEST /tmp/futk925337781/38 -TEST /tmp/futk925337781/38 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/38 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:06:35 Listening on 192.168.0.1:8080 at 2018-12-20 16:06:35.058778571 -0800 PST m=+0.004941072 -2018/12/20 16:08:58 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:11:04 Accepted &{{0xc000140100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:11:04 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38 -2018/12/20 16:11:04 Try to remove 8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF:EFI_FV_FILETYPE_DRIVER:Bds (8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF) -2018/12/20 16:11:04 removed [0xc000024300] -+ echo TEST /tmp/futk925337781/39 -TEST /tmp/futk925337781/39 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/39 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:12:22 Listening on 192.168.0.1:8080 at 2018-12-20 16:12:22.712610466 -0800 PST m=+0.005274340 -2018/12/20 16:15:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:15:22.713095197 -0800 PST m=+180.005758864 -2018/12/20 16:15:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:15:22 We are now done ...................... -2018/12/20 16:15:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:15:22 Try to remove 2FA2A6DA-11D5-4DC3-999A-749648B03C56:EFI_FV_FILETYPE_DRIVER:PiSmmIpl (2FA2A6DA-11D5-4DC3-999A-749648B03C56) -2018/12/20 16:15:22 removed [0xc008190e00] -+ echo TEST /tmp/futk925337781/40 -TEST /tmp/futk925337781/40 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/40 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:16:40 Listening on 192.168.0.1:8080 at 2018-12-20 16:16:40.97049864 -0800 PST m=+0.004998527 -2018/12/20 16:19:40 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:19:40.970921052 -0800 PST m=+180.005420863 -2018/12/20 16:19:40 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:19:40 We are now done ...................... -2018/12/20 16:19:40 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:19:40 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2018/12/20 16:19:40 removed [0xc008191300] -+ echo TEST /tmp/futk925337781/41 -TEST /tmp/futk925337781/41 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/41 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:20:59 Listening on 192.168.0.1:8080 at 2018-12-20 16:20:59.024877143 -0800 PST m=+0.005239209 -2018/12/20 16:23:22 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:25:28 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:25:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41 -2018/12/20 16:25:28 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2018/12/20 16:25:28 removed [0xc008190800] -+ echo TEST /tmp/futk925337781/42 -TEST /tmp/futk925337781/42 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/42 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:26:46 Listening on 192.168.0.1:8080 at 2018-12-20 16:26:46.6244388 -0800 PST m=+0.005275603 -2018/12/20 16:29:10 Accepted &{{0xc00017e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:31:15 Accepted &{{0xc00015c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:31:15 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42 -2018/12/20 16:31:15 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2018/12/20 16:31:15 removed [0xc000025700] -+ echo TEST /tmp/futk925337781/43 -TEST /tmp/futk925337781/43 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/43 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:32:34 Listening on 192.168.0.1:8080 at 2018-12-20 16:32:34.901920731 -0800 PST m=+0.005000936 -2018/12/20 16:34:58 Accepted &{{0xc00013c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:37:04 Accepted &{{0xc00013c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:37:04 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/43 -2018/12/20 16:37:04 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2018/12/20 16:37:04 removed [0xc000025a80] -+ echo TEST /tmp/futk925337781/44 -TEST /tmp/futk925337781/44 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/44 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:38:22 Listening on 192.168.0.1:8080 at 2018-12-20 16:38:22.544225362 -0800 PST m=+0.005281778 -2018/12/20 16:40:45 Accepted &{{0xc000172000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:42:51 Accepted &{{0xc00014e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:42:51 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/44 -2018/12/20 16:42:51 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2018/12/20 16:42:51 removed [0xc008191800] -+ echo TEST /tmp/futk925337781/45 -TEST /tmp/futk925337781/45 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/45 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:44:09 Listening on 192.168.0.1:8080 at 2018-12-20 16:44:09.975817317 -0800 PST m=+0.001989953 -2018/12/20 16:46:33 Accepted &{{0xc000134180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:48:38 Accepted &{{0xc000134280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:48:38 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/45 -2018/12/20 16:48:38 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2018/12/20 16:48:38 removed [0xc000025e00] -+ echo TEST /tmp/futk925337781/46 -TEST /tmp/futk925337781/46 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/46 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:49:56 Listening on 192.168.0.1:8080 at 2018-12-20 16:49:56.744182636 -0800 PST m=+0.005385736 -2018/12/20 16:52:20 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:54:25 Accepted &{{0xc000154080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:54:25 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46 -2018/12/20 16:54:25 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2018/12/20 16:54:25 removed [0xc0084f8a80] -+ echo TEST /tmp/futk925337781/47 -TEST /tmp/futk925337781/47 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/47 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:55:44 Listening on 192.168.0.1:8080 at 2018-12-20 16:55:44.193157595 -0800 PST m=+0.004100483 -2018/12/20 16:58:07 Accepted &{{0xc000142100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:00:13 Accepted &{{0xc000142200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:00:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47 -2018/12/20 17:00:13 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2018/12/20 17:00:13 removed [0xc000024a00] -+ echo TEST /tmp/futk925337781/48 -TEST /tmp/futk925337781/48 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/48 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:01:31 Listening on 192.168.0.1:8080 at 2018-12-20 17:01:31.714342556 -0800 PST m=+0.005571708 -2018/12/20 17:03:52 Accepted &{{0xc000162180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:05:56 Accepted &{{0xc000162280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:05:56 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/48 -2018/12/20 17:05:56 Try to remove 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910:EFI_FV_FILETYPE_DRIVER:PciRootBridge (80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910) -2018/12/20 17:05:56 removed [0xc000024f00] -+ echo TEST /tmp/futk925337781/49 -TEST /tmp/futk925337781/49 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/49 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:07:14 Listening on 192.168.0.1:8080 at 2018-12-20 17:07:14.347287953 -0800 PST m=+0.005317861 -2018/12/20 17:10:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:10:14.34774936 -0800 PST m=+180.005779118 -2018/12/20 17:10:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:10:14 We are now done ...................... -2018/12/20 17:10:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:10:14 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2018/12/20 17:10:14 removed [0xc008190980] -+ echo TEST /tmp/futk925337781/50 -TEST /tmp/futk925337781/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:11:32 Listening on 192.168.0.1:8080 at 2018-12-20 17:11:32.514093772 -0800 PST m=+0.005061727 -2018/12/20 17:13:53 Accepted &{{0xc000154100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:15:56 Accepted &{{0xc000154200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:15:56 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/50 -2018/12/20 17:15:56 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2018/12/20 17:15:56 removed [0xc000025e80] -+ echo TEST /tmp/futk925337781/51 -TEST /tmp/futk925337781/51 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/51 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:17:15 Listening on 192.168.0.1:8080 at 2018-12-20 17:17:15.563732949 -0800 PST m=+0.004555196 -2018/12/20 17:19:36 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:21:39 Accepted &{{0xc000146100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:21:39 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51 -2018/12/20 17:21:39 Try to remove 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe (1807040D-5934-41A2-A088-8E0F777F71AB) -2018/12/20 17:21:39 removed [0xc0084f8300] -+ echo TEST /tmp/futk925337781/52 -TEST /tmp/futk925337781/52 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/52 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:22:58 Listening on 192.168.0.1:8080 at 2018-12-20 17:22:58.055475377 -0800 PST m=+0.005275386 -2018/12/20 17:25:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:25:58.05594419 -0800 PST m=+180.005744008 -2018/12/20 17:25:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:25:58 We are now done ...................... -2018/12/20 17:25:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:25:58 Try to remove 274F0C8F-9E57-41D8-9966-29CCD48D31C2:EFI_FV_FILETYPE_DRIVER:SmmAccess (274F0C8F-9E57-41D8-9966-29CCD48D31C2) -2018/12/20 17:25:58 removed [0xc000024880] -+ echo TEST /tmp/futk925337781/53 -TEST /tmp/futk925337781/53 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/53 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:27:16 Listening on 192.168.0.1:8080 at 2018-12-20 17:27:16.344360431 -0800 PST m=+0.004669901 -2018/12/20 17:30:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:30:16.344836429 -0800 PST m=+180.005145740 -2018/12/20 17:30:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:30:16 We are now done ...................... -2018/12/20 17:30:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:30:16 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2018/12/20 17:30:16 removed [0xc008190b80] -+ echo TEST /tmp/futk925337781/54 -TEST /tmp/futk925337781/54 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/54 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:31:34 Listening on 192.168.0.1:8080 at 2018-12-20 17:31:34.83324492 -0800 PST m=+0.004844957 -2018/12/20 17:33:55 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:35:59 Accepted &{{0xc00014c180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:35:59 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/54 -2018/12/20 17:35:59 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2018/12/20 17:35:59 removed [0xc008191880] -+ echo TEST /tmp/futk925337781/55 -TEST /tmp/futk925337781/55 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/55 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:37:17 Listening on 192.168.0.1:8080 at 2018-12-20 17:37:17.556741855 -0800 PST m=+0.005026625 -2018/12/20 17:39:38 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:41:41 Accepted &{{0xc000150100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:41:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/55 -2018/12/20 17:41:41 Try to remove B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios (B13EDD38-684C-41ED-A305-D7B7E32497DF) -2018/12/20 17:41:41 removed [0xc008190880] -+ echo TEST /tmp/futk925337781/56 -TEST /tmp/futk925337781/56 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/56 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:42:59 Listening on 192.168.0.1:8080 at 2018-12-20 17:42:59.629389097 -0800 PST m=+0.004689203 -2018/12/20 17:45:59 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:45:59.629831992 -0800 PST m=+180.005131895 -2018/12/20 17:45:59 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:45:59 We are now done ...................... -2018/12/20 17:45:59 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:45:59 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2018/12/20 17:45:59 removed [0xc008190d00] -+ echo TEST /tmp/futk925337781/57 -TEST /tmp/futk925337781/57 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/57 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:47:17 Listening on 192.168.0.1:8080 at 2018-12-20 17:47:17.495849789 -0800 PST m=+0.004930173 -2018/12/20 17:49:38 Accepted &{{0xc000144100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:51:42 Accepted &{{0xc000144200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:51:42 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/57 -2018/12/20 17:51:42 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2018/12/20 17:51:42 removed [0xc008190f00] -+ echo TEST /tmp/futk925337781/58 -TEST /tmp/futk925337781/58 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/58 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:52:59 Listening on 192.168.0.1:8080 at 2018-12-20 17:52:59.756822581 -0800 PST m=+0.005077237 -2018/12/20 17:55:20 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:57:23 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:57:23 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/58 -2018/12/20 17:57:23 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2018/12/20 17:57:23 removed [0xc008190c00] -+ echo TEST /tmp/futk925337781/59 -TEST /tmp/futk925337781/59 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/59 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:58:41 Listening on 192.168.0.1:8080 at 2018-12-20 17:58:41.174667602 -0800 PST m=+0.005240425 -2018/12/20 18:01:01 Accepted &{{0xc00014e100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:03:05 Accepted &{{0xc00014e200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:03:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/59 -2018/12/20 18:03:05 Try to remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase (348C4D62-BFBD-4882-9ECE-C80BB1C4783B) -2018/12/20 18:03:05 removed [0xc000024480] -+ echo TEST /tmp/futk925337781/60 -TEST /tmp/futk925337781/60 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/60 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:04:23 Listening on 192.168.0.1:8080 at 2018-12-20 18:04:23.37435198 -0800 PST m=+0.005182644 -2018/12/20 18:07:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 18:07:23.374708801 -0800 PST m=+180.005539427 -2018/12/20 18:07:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:07:23 We are now done ...................... -2018/12/20 18:07:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:07:23 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2018/12/20 18:07:23 removed [0xc008190c80] -+ echo TEST /tmp/futk925337781/61 -TEST /tmp/futk925337781/61 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/61 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:08:41 Listening on 192.168.0.1:8080 at 2018-12-20 18:08:41.132668085 -0800 PST m=+0.005357167 -2018/12/20 18:11:02 Accepted &{{0xc000152080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:13:05 Accepted &{{0xc000152180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:13:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/61 -2018/12/20 18:13:05 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2018/12/20 18:13:05 removed [0xc0084f9580] -+ echo TEST /tmp/futk925337781/62 -TEST /tmp/futk925337781/62 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/62 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:14:23 Listening on 192.168.0.1:8080 at 2018-12-20 18:14:23.443464198 -0800 PST m=+0.005498427 -2018/12/20 18:16:44 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:18:47 Accepted &{{0xc000148100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:18:47 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/62 -2018/12/20 18:18:47 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2018/12/20 18:18:47 removed [0xc000025f80] -+ echo TEST /tmp/futk925337781/63 -TEST /tmp/futk925337781/63 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/63 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:20:05 Listening on 192.168.0.1:8080 at 2018-12-20 18:20:05.127781304 -0800 PST m=+0.004805826 -2018/12/20 18:22:26 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:24:29 Accepted &{{0xc000150180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:24:29 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63 -2018/12/20 18:24:29 Try to remove DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm (DEB0EE00-18DF-415C-AF03-74D09B0AAD87) -2018/12/20 18:24:29 removed [0xc008190f80] -+ echo TEST /tmp/futk925337781/64 -TEST /tmp/futk925337781/64 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/64 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:25:47 Listening on 192.168.0.1:8080 at 2018-12-20 18:25:47.41812751 -0800 PST m=+0.005003202 -2018/12/20 18:28:08 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:30:11 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:30:11 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/64 -2018/12/20 18:30:11 Try to remove 06D20D84-A032-4E25-969A-346D255E46D1:EFI_FV_FILETYPE_DRIVER:CpuCsrAccess (06D20D84-A032-4E25-969A-346D255E46D1) -2018/12/20 18:30:11 removed [0xc008190e80] -+ echo TEST /tmp/futk925337781/65 -TEST /tmp/futk925337781/65 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/65 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:31:29 Listening on 192.168.0.1:8080 at 2018-12-20 18:31:29.417255251 -0800 PST m=+0.004313930 -2018/12/20 18:34:29 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 18:34:29.417711988 -0800 PST m=+180.004770540 -2018/12/20 18:34:29 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:34:29 We are now done ...................... -2018/12/20 18:34:29 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:34:29 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2018/12/20 18:34:29 removed [0xc0084f9500] -+ echo TEST /tmp/futk925337781/66 -TEST /tmp/futk925337781/66 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/66 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:35:47 Listening on 192.168.0.1:8080 at 2018-12-20 18:35:47.322068839 -0800 PST m=+0.005147984 -2018/12/20 18:38:08 Accepted &{{0xc000156080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:40:11 Accepted &{{0xc000156180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:40:11 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/66 -2018/12/20 18:40:11 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2018/12/20 18:40:11 removed [0xc008190580] -+ echo TEST /tmp/futk925337781/67 -TEST /tmp/futk925337781/67 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/67 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:41:29 Listening on 192.168.0.1:8080 at 2018-12-20 18:41:29.40350807 -0800 PST m=+0.004335908 -2018/12/20 18:43:50 Accepted &{{0xc00016c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:45:53 Accepted &{{0xc00016c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:45:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67 -2018/12/20 18:45:53 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2018/12/20 18:45:53 removed [0xc000025100] -+ echo TEST /tmp/futk925337781/68 -TEST /tmp/futk925337781/68 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/68 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:47:11 Listening on 192.168.0.1:8080 at 2018-12-20 18:47:11.508995353 -0800 PST m=+0.005627683 -2018/12/20 18:49:32 Accepted &{{0xc000146180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:51:35 Accepted &{{0xc00018a000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:51:35 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/68 -2018/12/20 18:51:35 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2018/12/20 18:51:35 removed [0xc0084f8680] -+ echo TEST /tmp/futk925337781/69 -TEST /tmp/futk925337781/69 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/69 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:52:53 Listening on 192.168.0.1:8080 at 2018-12-20 18:52:53.756505644 -0800 PST m=+0.004630321 -2018/12/20 18:55:15 Accepted &{{0xc00014e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:57:18 Accepted &{{0xc00014e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:57:18 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/69 -2018/12/20 18:57:18 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2018/12/20 18:57:18 removed [0xc008190b00] -+ echo TEST /tmp/futk925337781/70 -TEST /tmp/futk925337781/70 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/70 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:58:36 Listening on 192.168.0.1:8080 at 2018-12-20 18:58:36.431655716 -0800 PST m=+0.002397625 -2018/12/20 19:00:57 Accepted &{{0xc00014e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:03:00 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:03:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/70 -2018/12/20 19:03:00 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2018/12/20 19:03:00 removed [0xc008190400] -+ echo TEST /tmp/futk925337781/71 -TEST /tmp/futk925337781/71 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/71 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:04:18 Listening on 192.168.0.1:8080 at 2018-12-20 19:04:18.911352222 -0800 PST m=+0.004901757 -2018/12/20 19:06:39 Accepted &{{0xc000180000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:08:43 Accepted &{{0xc000166100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:08:43 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71 -2018/12/20 19:08:43 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2018/12/20 19:08:43 removed [0xc0084f8180] -+ echo TEST /tmp/futk925337781/72 -TEST /tmp/futk925337781/72 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/72 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:10:00 Listening on 192.168.0.1:8080 at 2018-12-20 19:10:00.965019013 -0800 PST m=+0.004917582 -2018/12/20 19:12:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:14:21 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:14:21 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/72 -2018/12/20 19:14:21 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2018/12/20 19:14:21 removed [0xc000025380] -+ echo TEST /tmp/futk925337781/73 -TEST /tmp/futk925337781/73 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/73 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:15:39 Listening on 192.168.0.1:8080 at 2018-12-20 19:15:39.027754537 -0800 PST m=+0.005721429 -2018/12/20 19:17:57 Accepted &{{0xc000166180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:19:58 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:19:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/73 -2018/12/20 19:19:58 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2018/12/20 19:19:59 removed [0xc000024800] -+ echo TEST /tmp/futk925337781/74 -TEST /tmp/futk925337781/74 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/74 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:21:16 Listening on 192.168.0.1:8080 at 2018-12-20 19:21:16.76222149 -0800 PST m=+0.002446848 -2018/12/20 19:23:35 Accepted &{{0xc000166000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:25:36 Accepted &{{0xc00014c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:25:36 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/74 -2018/12/20 19:25:36 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2018/12/20 19:25:36 removed [0xc008191500] -+ echo TEST /tmp/futk925337781/75 -TEST /tmp/futk925337781/75 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/75 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:26:54 Listening on 192.168.0.1:8080 at 2018-12-20 19:26:54.495710155 -0800 PST m=+0.004446478 -2018/12/20 19:29:13 Accepted &{{0xc00014a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:31:14 Accepted &{{0xc00014a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:31:14 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/75 -2018/12/20 19:31:14 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2018/12/20 19:31:14 removed [0xc000024780] -+ echo TEST /tmp/futk925337781/76 -TEST /tmp/futk925337781/76 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/76 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:32:32 Listening on 192.168.0.1:8080 at 2018-12-20 19:32:32.151543091 -0800 PST m=+0.004464779 -2018/12/20 19:34:50 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:36:52 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:36:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/76 -2018/12/20 19:36:52 Try to remove CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard (CEF68C66-06AB-4FB3-A3ED-5FFA885B5725) -2018/12/20 19:36:52 removed [0xc008190900] -+ echo TEST /tmp/futk925337781/77 -TEST /tmp/futk925337781/77 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/77 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:38:09 Listening on 192.168.0.1:8080 at 2018-12-20 19:38:09.788551728 -0800 PST m=+0.005509443 -2018/12/20 19:41:09 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 19:41:09.789007908 -0800 PST m=+180.005965453 -2018/12/20 19:41:09 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:41:09 We are now done ...................... -2018/12/20 19:41:09 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:41:09 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2018/12/20 19:41:09 removed [0xc0084f8480] -+ echo TEST /tmp/futk925337781/78 -TEST /tmp/futk925337781/78 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/78 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:42:27 Listening on 192.168.0.1:8080 at 2018-12-20 19:42:27.715166318 -0800 PST m=+0.005238798 -2018/12/20 19:44:21 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:45:57 Accepted &{{0xc00014e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:45:57 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78 -2018/12/20 19:45:57 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2018/12/20 19:45:57 removed [0xc000025780] -+ echo TEST /tmp/futk925337781/79 -TEST /tmp/futk925337781/79 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/79 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:47:14 Listening on 192.168.0.1:8080 at 2018-12-20 19:47:14.919859548 -0800 PST m=+0.005266410 -2018/12/20 19:49:09 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:50:45 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:50:45 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/79 -2018/12/20 19:50:45 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2018/12/20 19:50:45 removed [0xc008190380] -+ echo TEST /tmp/futk925337781/80 -TEST /tmp/futk925337781/80 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/80 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:52:02 Listening on 192.168.0.1:8080 at 2018-12-20 19:52:02.894600896 -0800 PST m=+0.004930883 -2018/12/20 19:53:56 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:55:33 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:55:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80 -2018/12/20 19:55:33 Try to remove 40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe (40BEAB40-CECE-4909-B133-20A413AE19E9) -2018/12/20 19:55:33 removed [0xc000024700] -+ echo TEST /tmp/futk925337781/81 -TEST /tmp/futk925337781/81 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/81 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:56:50 Listening on 192.168.0.1:8080 at 2018-12-20 19:56:50.572002523 -0800 PST m=+0.005085717 -2018/12/20 19:59:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 19:59:50.572501272 -0800 PST m=+180.005584263 -2018/12/20 19:59:50 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:59:50 We are now done ...................... -2018/12/20 19:59:50 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:59:50 Try to remove 76A7B4FC-C8D5-462D-A4D2-6E88338A772A:EFI_FV_FILETYPE_DRIVER:PlatformCpuPolicy (76A7B4FC-C8D5-462D-A4D2-6E88338A772A) -2018/12/20 19:59:50 removed [0xc000025480] -+ echo TEST /tmp/futk925337781/82 -TEST /tmp/futk925337781/82 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/82 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:01:07 Listening on 192.168.0.1:8080 at 2018-12-20 20:01:07.942057836 -0800 PST m=+0.005391989 -2018/12/20 20:04:07 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:04:07.942537723 -0800 PST m=+180.005871718 -2018/12/20 20:04:07 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:04:07 We are now done ...................... -2018/12/20 20:04:07 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:04:07 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2018/12/20 20:04:07 removed [0xc000025300] -+ echo TEST /tmp/futk925337781/83 -TEST /tmp/futk925337781/83 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/83 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:05:25 Listening on 192.168.0.1:8080 at 2018-12-20 20:05:25.340812113 -0800 PST m=+0.005316999 -2018/12/20 20:07:19 Accepted &{{0xc00013e180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:08:55 Accepted &{{0xc00013e280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:08:55 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83 -2018/12/20 20:08:55 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2018/12/20 20:08:55 removed [0xc0084f9380] -+ echo TEST /tmp/futk925337781/84 -TEST /tmp/futk925337781/84 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/84 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:10:12 Listening on 192.168.0.1:8080 at 2018-12-20 20:10:12.92855434 -0800 PST m=+0.005379744 -2018/12/20 20:12:02 Accepted &{{0xc000166080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:13:39 Accepted &{{0xc000166180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:13:39 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/84 -2018/12/20 20:13:39 Try to remove 56D60EE4-5CCF-485C-BBBB-FEDAE2B24146:EFI_FV_FILETYPE_DRIVER:RegAccessDxe (56D60EE4-5CCF-485C-BBBB-FEDAE2B24146) -2018/12/20 20:13:39 removed [0xc0084f8700] -+ echo TEST /tmp/futk925337781/85 -TEST /tmp/futk925337781/85 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/85 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:14:56 Listening on 192.168.0.1:8080 at 2018-12-20 20:14:56.481147437 -0800 PST m=+0.004919323 -2018/12/20 20:17:56 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:17:56.481601462 -0800 PST m=+180.005373158 -2018/12/20 20:17:56 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:17:56 We are now done ...................... -2018/12/20 20:17:56 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:17:56 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2018/12/20 20:17:56 removed [0xc000025800] -+ echo TEST /tmp/futk925337781/86 -TEST /tmp/futk925337781/86 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/86 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:19:14 Listening on 192.168.0.1:8080 at 2018-12-20 20:19:14.036470475 -0800 PST m=+0.005226324 -2018/12/20 20:21:07 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:22:43 Accepted &{{0xc000164080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:22:43 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86 -2018/12/20 20:22:43 Try to remove 79CA4208-BBA1-4A9A-8456-E1E66A81484E:EFI_FV_FILETYPE_DRIVER:Legacy8259 (79CA4208-BBA1-4A9A-8456-E1E66A81484E) -2018/12/20 20:22:43 removed [0xc000024680] -+ echo TEST /tmp/futk925337781/87 -TEST /tmp/futk925337781/87 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/87 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:24:00 Listening on 192.168.0.1:8080 at 2018-12-20 20:24:00.924543717 -0800 PST m=+0.005290866 -2018/12/20 20:27:00 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:27:00.925019656 -0800 PST m=+180.005766622 -2018/12/20 20:27:00 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:27:00 We are now done ...................... -2018/12/20 20:27:00 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:27:00 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2018/12/20 20:27:00 removed [0xc008190480] -+ echo TEST /tmp/futk925337781/88 -TEST /tmp/futk925337781/88 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/88 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:28:18 Listening on 192.168.0.1:8080 at 2018-12-20 20:28:18.251326435 -0800 PST m=+0.004860247 -2018/12/20 20:30:08 Accepted &{{0xc000138180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:31:44 Accepted &{{0xc000138280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:31:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88 -2018/12/20 20:31:44 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2018/12/20 20:31:44 removed [0xc000024c80] -+ echo TEST /tmp/futk925337781/89 -TEST /tmp/futk925337781/89 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/89 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:33:02 Listening on 192.168.0.1:8080 at 2018-12-20 20:33:02.283415483 -0800 PST m=+0.005258247 -2018/12/20 20:34:55 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:36:31 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:36:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/89 -2018/12/20 20:36:31 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2018/12/20 20:36:31 removed [0xc000024500] -+ echo TEST /tmp/futk925337781/90 -TEST /tmp/futk925337781/90 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/90 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:37:49 Listening on 192.168.0.1:8080 at 2018-12-20 20:37:49.134772319 -0800 PST m=+0.002789523 -2018/12/20 20:39:43 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:41:19 Accepted &{{0xc000146080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:41:19 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90 -2018/12/20 20:41:19 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2018/12/20 20:41:19 removed [0xc008190300] -+ echo TEST /tmp/futk925337781/91 -TEST /tmp/futk925337781/91 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/91 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:42:36 Listening on 192.168.0.1:8080 at 2018-12-20 20:42:36.724654358 -0800 PST m=+0.004763851 -2018/12/20 20:44:30 Accepted &{{0xc00015e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:46:06 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:46:06 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91 -2018/12/20 20:46:06 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2018/12/20 20:46:06 removed [0xc008191000] -+ echo TEST /tmp/futk925337781/92 -TEST /tmp/futk925337781/92 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/92 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:47:23 Listening on 192.168.0.1:8080 at 2018-12-20 20:47:23.579420321 -0800 PST m=+0.005093306 -2018/12/20 20:49:17 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:50:53 Accepted &{{0xc000150080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:50:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92 -2018/12/20 20:50:53 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2018/12/20 20:50:53 removed [0xc008191780] -+ echo TEST /tmp/futk925337781/93 -TEST /tmp/futk925337781/93 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/93 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:52:10 Listening on 192.168.0.1:8080 at 2018-12-20 20:52:10.354211095 -0800 PST m=+0.005311245 -2018/12/20 20:54:00 Accepted &{{0xc000164100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:55:36 Accepted &{{0xc000164200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:55:36 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/93 -2018/12/20 20:55:36 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2018/12/20 20:55:36 removed [0xc008190000] -+ echo TEST /tmp/futk925337781/94 -TEST /tmp/futk925337781/94 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/94 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:56:53 Listening on 192.168.0.1:8080 at 2018-12-20 20:56:53.613061296 -0800 PST m=+0.005014177 -2018/12/20 20:58:47 Accepted &{{0xc00014e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:00:23 Accepted &{{0xc00014e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:00:23 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94 -2018/12/20 21:00:23 Try to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 (D6207835-B7E3-4FF8-B276-CDE3E52206BC) -2018/12/20 21:00:23 removed [0xc008190180] -+ echo TEST /tmp/futk925337781/95 -TEST /tmp/futk925337781/95 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/95 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:01:40 Listening on 192.168.0.1:8080 at 2018-12-20 21:01:40.701053391 -0800 PST m=+0.004683518 -2018/12/20 21:03:34 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:05:10 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:05:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95 -2018/12/20 21:05:10 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2018/12/20 21:05:10 removed [0xc000025b80] -+ echo TEST /tmp/futk925337781/96 -TEST /tmp/futk925337781/96 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/96 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:06:27 Listening on 192.168.0.1:8080 at 2018-12-20 21:06:27.528188918 -0800 PST m=+0.005195378 -2018/12/20 21:08:21 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:09:57 Accepted &{{0xc000142100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:09:57 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96 -2018/12/20 21:09:57 Try to remove 2E6A521C-F697-402D-9774-98B2B7E140F3:EFI_FV_FILETYPE_DRIVER:PlatformType (2E6A521C-F697-402D-9774-98B2B7E140F3) -2018/12/20 21:09:57 removed [0xc000025680] -+ echo TEST /tmp/futk925337781/97 -TEST /tmp/futk925337781/97 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/97 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:11:14 Listening on 192.168.0.1:8080 at 2018-12-20 21:11:14.768610516 -0800 PST m=+0.005840572 -2018/12/20 21:14:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 21:14:14.769035167 -0800 PST m=+180.006265062 -2018/12/20 21:14:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:14:14 We are now done ...................... -2018/12/20 21:14:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:14:14 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2018/12/20 21:14:14 removed [0xc000024e80] -+ echo TEST /tmp/futk925337781/98 -TEST /tmp/futk925337781/98 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/98 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:15:32 Listening on 192.168.0.1:8080 at 2018-12-20 21:15:32.114669369 -0800 PST m=+0.004777217 -2018/12/20 21:17:25 Accepted &{{0xc000144100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:19:02 Accepted &{{0xc000144200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:19:02 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/98 -2018/12/20 21:19:02 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2018/12/20 21:19:02 removed [0xc000025600] -+ echo TEST /tmp/futk925337781/99 -TEST /tmp/futk925337781/99 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/99 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:20:19 Listening on 192.168.0.1:8080 at 2018-12-20 21:20:19.466768989 -0800 PST m=+0.004988781 -2018/12/20 21:22:13 Accepted &{{0xc00015a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:23:49 Accepted &{{0xc00015a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:23:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99 -2018/12/20 21:23:49 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2018/12/20 21:23:49 removed [0xc008190500] -+ echo TEST /tmp/futk925337781/100 -TEST /tmp/futk925337781/100 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/100 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:25:06 Listening on 192.168.0.1:8080 at 2018-12-20 21:25:06.333436059 -0800 PST m=+0.004846825 -2018/12/20 21:26:56 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:28:33 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:28:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100 -2018/12/20 21:28:33 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2018/12/20 21:28:33 removed [0xc000025d80] -+ echo TEST /tmp/futk925337781/101 -TEST /tmp/futk925337781/101 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/101 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:29:50 Listening on 192.168.0.1:8080 at 2018-12-20 21:29:50.189982224 -0800 PST m=+0.004673167 -2018/12/20 21:31:44 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:33:20 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:33:20 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101 -2018/12/20 21:33:20 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2018/12/20 21:33:20 removed [0xc008191700] -+ echo TEST /tmp/futk925337781/102 -TEST /tmp/futk925337781/102 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/102 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:34:37 Listening on 192.168.0.1:8080 at 2018-12-20 21:34:37.715295132 -0800 PST m=+0.005162615 -2018/12/20 21:36:31 Accepted &{{0xc000146080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:38:07 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:38:07 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102 -2018/12/20 21:38:07 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2018/12/20 21:38:07 removed [0xc008191680] -+ echo TEST /tmp/futk925337781/103 -TEST /tmp/futk925337781/103 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/103 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:39:24 Listening on 192.168.0.1:8080 at 2018-12-20 21:39:24.640238823 -0800 PST m=+0.005299504 -2018/12/20 21:41:18 Accepted &{{0xc000154080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:42:54 Accepted &{{0xc000154180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:42:54 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/103 -2018/12/20 21:42:54 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2018/12/20 21:42:54 removed [0xc000024380] -+ echo TEST /tmp/futk925337781/104 -TEST /tmp/futk925337781/104 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/104 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:44:11 Listening on 192.168.0.1:8080 at 2018-12-20 21:44:11.365626903 -0800 PST m=+0.004529410 -2018/12/20 21:46:05 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:47:41 Accepted &{{0xc000142080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:47:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/104 -2018/12/20 21:47:41 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2018/12/20 21:47:41 removed [0xc000025c00] -+ echo TEST /tmp/futk925337781/105 -TEST /tmp/futk925337781/105 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/105 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:48:58 Listening on 192.168.0.1:8080 at 2018-12-20 21:48:58.690742703 -0800 PST m=+0.004760520 -2018/12/20 21:50:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:52:28 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:52:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105 -2018/12/20 21:52:28 Try to remove 788DD6A1-F1EE-4BBA-A925-C0E7D66271BD:EFI_FV_FILETYPE_DRIVER:SystemBoardDxe (788DD6A1-F1EE-4BBA-A925-C0E7D66271BD) -2018/12/20 21:52:28 removed [0xc000025a00] -+ echo TEST /tmp/futk925337781/106 -TEST /tmp/futk925337781/106 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/106 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:53:45 Listening on 192.168.0.1:8080 at 2018-12-20 21:53:45.754837562 -0800 PST m=+0.005289240 -2018/12/20 21:56:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 21:56:45.755291306 -0800 PST m=+180.005742827 -2018/12/20 21:56:45 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:56:45 We are now done ...................... -2018/12/20 21:56:45 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:56:45 Try to remove 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer (90CB75DB-71FC-489D-AACF-943477EC7212) -2018/12/20 21:56:45 removed [0xc000024980] -+ echo TEST /tmp/futk925337781/107 -TEST /tmp/futk925337781/107 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/107 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:58:03 Listening on 192.168.0.1:8080 at 2018-12-20 21:58:03.298097231 -0800 PST m=+0.004954004 -2018/12/20 22:01:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:01:03.29856244 -0800 PST m=+180.005418999 -2018/12/20 22:01:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:01:03 We are now done ...................... -2018/12/20 22:01:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:01:03 Try to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup (DC92A37B-4AC5-4117-AABB-019FFC0FD06A) -2018/12/20 22:01:03 removed [0xc000025980] -+ echo TEST /tmp/futk925337781/108 -TEST /tmp/futk925337781/108 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/108 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:02:20 Listening on 192.168.0.1:8080 at 2018-12-20 22:02:20.257288701 -0800 PST m=+0.004764903 -2018/12/20 22:04:14 Accepted &{{0xc000140080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:05:49 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:05:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/108 -2018/12/20 22:05:49 Try to remove B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe (B601F8C4-43B7-4784-95B1-F4226CB40CEE) -2018/12/20 22:05:49 removed [0xc008190d80] -+ echo TEST /tmp/futk925337781/109 -TEST /tmp/futk925337781/109 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/109 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:07:06 Listening on 192.168.0.1:8080 at 2018-12-20 22:07:06.847850404 -0800 PST m=+0.005167920 -2018/12/20 22:10:06 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:10:06.848302351 -0800 PST m=+180.005619719 -2018/12/20 22:10:06 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:10:06 We are now done ...................... -2018/12/20 22:10:06 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:10:06 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2018/12/20 22:10:06 removed [0xc008190200] -+ echo TEST /tmp/futk925337781/110 -TEST /tmp/futk925337781/110 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/110 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:11:23 Listening on 192.168.0.1:8080 at 2018-12-20 22:11:23.961190693 -0800 PST m=+0.005224928 -2018/12/20 22:13:17 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:14:53 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:14:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110 -2018/12/20 22:14:53 Try to remove C1C418F9-591D-461C-82A2-B9CD96DFEA86:EFI_FV_FILETYPE_DRIVER:LegacyInterrupt (C1C418F9-591D-461C-82A2-B9CD96DFEA86) -2018/12/20 22:14:53 removed [0xc000024900] -+ echo TEST /tmp/futk925337781/111 -TEST /tmp/futk925337781/111 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/111 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:16:10 Listening on 192.168.0.1:8080 at 2018-12-20 22:16:10.861995689 -0800 PST m=+0.004932345 -2018/12/20 22:18:03 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:21:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:21:03.797324572 -0800 PST m=+292.940261077 -2018/12/20 22:21:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:21:03 We are now done ...................... -2018/12/20 22:21:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:21:03 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2018/12/20 22:21:03 removed [0xc008190100] -+ echo TEST /tmp/futk925337781/112 -TEST /tmp/futk925337781/112 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/112 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:22:20 Listening on 192.168.0.1:8080 at 2018-12-20 22:22:20.816990902 -0800 PST m=+0.005099742 -2018/12/20 22:24:14 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:25:50 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:25:50 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112 -2018/12/20 22:25:50 Try to remove A062CF1F-8473-4AA3-8793-600BC4FFE9A8:EFI_FV_FILETYPE_DRIVER:CsmDxe (A062CF1F-8473-4AA3-8793-600BC4FFE9A8) -2018/12/20 22:25:50 removed [0xc000025280] -+ echo TEST /tmp/futk925337781/113 -TEST /tmp/futk925337781/113 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/113 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:27:07 Listening on 192.168.0.1:8080 at 2018-12-20 22:27:07.652741885 -0800 PST m=+0.005140945 -2018/12/20 22:28:57 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:31:57 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:31:57.349093708 -0800 PST m=+289.701492554 -2018/12/20 22:31:57 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:31:57 We are now done ...................... -2018/12/20 22:31:57 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:31:57 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2018/12/20 22:31:57 removed [0xc008191a00] -+ echo TEST /tmp/futk925337781/114 -TEST /tmp/futk925337781/114 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/114 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:33:14 Listening on 192.168.0.1:8080 at 2018-12-20 22:33:14.943430764 -0800 PST m=+0.005762702 -2018/12/20 22:35:08 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:36:44 Accepted &{{0xc000158200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:36:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/114 -2018/12/20 22:36:44 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2018/12/20 22:36:44 removed [0xc008190700] -+ echo TEST /tmp/futk925337781/115 -TEST /tmp/futk925337781/115 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/115 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:38:01 Listening on 192.168.0.1:8080 at 2018-12-20 22:38:01.625109288 -0800 PST m=+0.004427742 -2018/12/20 22:39:55 Accepted &{{0xc000142080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:41:31 Accepted &{{0xc000196000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:41:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115 -2018/12/20 22:41:31 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2018/12/20 22:41:31 removed [0xc000025000] -+ echo TEST /tmp/futk925337781/116 -TEST /tmp/futk925337781/116 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/116 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:42:48 Listening on 192.168.0.1:8080 at 2018-12-20 22:42:48.916248401 -0800 PST m=+0.004366302 -2018/12/20 22:44:42 Accepted &{{0xc000140100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:46:18 Accepted &{{0xc000140200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:46:18 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116 -2018/12/20 22:46:18 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2018/12/20 22:46:18 removed [0xc000024600] -+ echo TEST /tmp/futk925337781/117 -TEST /tmp/futk925337781/117 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/117 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:47:35 Listening on 192.168.0.1:8080 at 2018-12-20 22:47:35.582221866 -0800 PST m=+0.004836803 -2018/12/20 22:49:25 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:51:01 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:51:01 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/117 -2018/12/20 22:51:01 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2018/12/20 22:51:01 removed [0xc008190780] -+ echo TEST /tmp/futk925337781/118 -TEST /tmp/futk925337781/118 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/118 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:52:18 Listening on 192.168.0.1:8080 at 2018-12-20 22:52:18.725295322 -0800 PST m=+0.005087849 -2018/12/20 22:54:12 Accepted &{{0xc000146100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:55:48 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:55:48 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118 -2018/12/20 22:55:48 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2018/12/20 22:55:48 removed [0xc000024c00] -+ echo TEST /tmp/futk925337781/119 -TEST /tmp/futk925337781/119 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/119 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:57:05 Listening on 192.168.0.1:8080 at 2018-12-20 22:57:05.963597055 -0800 PST m=+0.004854273 -2018/12/20 22:58:59 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:00:35 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:00:35 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/119 -2018/12/20 23:00:35 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2018/12/20 23:00:35 removed [0xc008190080] -+ echo TEST /tmp/futk925337781/120 -TEST /tmp/futk925337781/120 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/120 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:01:52 Listening on 192.168.0.1:8080 at 2018-12-20 23:01:52.499126546 -0800 PST m=+0.002942545 -2018/12/20 23:03:46 Accepted &{{0xc00013a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:05:22 Accepted &{{0xc000140100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:05:22 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120 -2018/12/20 23:05:22 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2018/12/20 23:05:22 removed [0xc008191600] -+ echo TEST /tmp/futk925337781/121 -TEST /tmp/futk925337781/121 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/121 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:06:39 Listening on 192.168.0.1:8080 at 2018-12-20 23:06:39.391761255 -0800 PST m=+0.004991323 -2018/12/20 23:08:33 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:10:08 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:10:08 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/121 -2018/12/20 23:10:08 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2018/12/20 23:10:08 removed [0xc008190a00] -+ echo TEST /tmp/futk925337781/122 -TEST /tmp/futk925337781/122 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/122 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:11:25 Listening on 192.168.0.1:8080 at 2018-12-20 23:11:25.846974946 -0800 PST m=+0.005090289 -2018/12/20 23:13:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:14:55 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:14:55 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122 -2018/12/20 23:14:55 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2018/12/20 23:14:55 removed [0xc008190600] -+ echo TEST /tmp/futk925337781/123 -TEST /tmp/futk925337781/123 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/123 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:16:12 Listening on 192.168.0.1:8080 at 2018-12-20 23:16:12.096148547 -0800 PST m=+0.005148276 -2018/12/20 23:18:05 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:19:41 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:19:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123 -2018/12/20 23:19:41 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2018/12/20 23:19:41 removed [0xc008191180] -+ echo TEST /tmp/futk925337781/124 -TEST /tmp/futk925337781/124 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/124 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:20:58 Listening on 192.168.0.1:8080 at 2018-12-20 23:20:58.284506368 -0800 PST m=+0.004793942 -2018/12/20 23:22:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:24:28 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:24:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/124 -2018/12/20 23:24:28 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2018/12/20 23:24:28 removed [0xc0084f8980] -+ echo TEST /tmp/futk925337781/125 -TEST /tmp/futk925337781/125 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/125 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:25:44 Listening on 192.168.0.1:8080 at 2018-12-20 23:25:44.854032771 -0800 PST m=+0.005205096 -2018/12/20 23:27:38 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:29:14 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:29:14 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/125 -2018/12/20 23:29:14 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2018/12/20 23:29:14 removed [0xc000024a80] -+ echo TEST /tmp/futk925337781/126 -TEST /tmp/futk925337781/126 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/126 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:30:31 Listening on 192.168.0.1:8080 at 2018-12-20 23:30:31.183744468 -0800 PST m=+0.005385213 -2018/12/20 23:32:24 Accepted &{{0xc000150100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:34:00 Accepted &{{0xc000150200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:34:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/126 -2018/12/20 23:34:00 Try to remove 62D171CB-78CD-4480-8678-C6A2A797A8DE:EFI_FV_FILETYPE_DRIVER:CpuArchDxe (62D171CB-78CD-4480-8678-C6A2A797A8DE) -2018/12/20 23:34:00 removed [0xc000024580] -+ echo TEST /tmp/futk925337781/127 -TEST /tmp/futk925337781/127 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/127 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:35:17 Listening on 192.168.0.1:8080 at 2018-12-20 23:35:17.59639142 -0800 PST m=+0.005489228 -2018/12/20 23:38:17 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 23:38:17.596917075 -0800 PST m=+180.006014652 -2018/12/20 23:38:17 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:38:17 We are now done ...................... -2018/12/20 23:38:17 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:38:17 Try to remove CBC59C4A-383A-41EB-A8EE-4498AEA567E4:EFI_FV_FILETYPE_DRIVER:FlashDriver (CBC59C4A-383A-41EB-A8EE-4498AEA567E4) -2018/12/20 23:38:17 removed [0xc0084f8280] -+ echo TEST /tmp/futk925337781/128 -TEST /tmp/futk925337781/128 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/128 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:39:34 Listening on 192.168.0.1:8080 at 2018-12-20 23:39:34.420211304 -0800 PST m=+0.005312749 -2018/12/20 23:42:34 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 23:42:34.420688673 -0800 PST m=+180.005789950 -2018/12/20 23:42:34 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:42:34 We are now done ...................... -2018/12/20 23:42:34 accept tcp 192.168.0.1:8080: i/o timeout -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk925337781/ -[?2004l128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l !$ -[?2004lls -l /tmp/futk925337781/ -total 32768 --rw-r--r-- 1 rminnich primarygroup 33554432 Dec 20 23:38 128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 fail.bin linux removeBMCcrap.bin RUN3 x.bin -bin.reset DIT futk.remove.99 LIST removemorecrap.bin RUN4 xxx -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma LOG removesetupcrap.bin RUN4.4.rom yyy -commentmorecrap.bin DXECLEANER ipmisucks.bin Makefile removesomecrap.bin tyan7102.bin -commentsetupcrap.bin EATIT L NOTES rom211.rom uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mroe Makefile -[?2004lbash: mroe: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u --root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/c -mds/elvish github.com/u-root/u-root/cmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ echo *128* -[?2004l*128* -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp tmp/fucp /tmp/futk925337781/128 futk.ls -l /tmp/futk925337781/ -[?2004ltotal 32768 --rw-r--r-- 1 rminnich primarygroup 33554432 Dec 20 23:38 128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/ -0_motd_lastrun futk925337781/ -bad Grammar__py_binary_resource_gagent__qaVS9l.pickle -cacert__py_binary_resource_gagent__WVJMJH.pem .ICE-unix/ -cacerts__py_binary_resource_goobuntu-bridge-server__0cFwbz.txt initgoogle_syslog_dir.120/ -cacerts__py_binary_resource_goobuntu-bridge-server__BRBH19.txt initgoogle_syslog_dir.65534/ -cacerts__py_binary_resource_goobuntu-bridge-server__kzdZ03.txt initramfs.linux_amd64.cpio -cacerts__py_binary_resource_goobuntu-bridge-server___LaR15.txt libcapstone__py_binary_resource_gagent__HpHB0Q.so -cacerts__py_binary_resource_goobuntu-bridge-server__mnqRnb.txt ns.rminnich.:0/ -cacerts__py_binary_resource_goobuntu-bridge-server__ONKyLI.txt PatternGrammar__py_binary_resource_gagent__x6BiZ6.pickle -cacerts__py_binary_resource_goobuntu-bridge-server__R9ZskZ.txt ssh-bllrPgoTRFh5/ -cacerts__py_binary_resource_goobuntu-bridge-server__xvu6eS.txt swapcheck_record_156049 -cacerts__py_binary_resource_goobuntu-bridge-server__zJQzMh.txt tmpAVIbld__unpar__.runfiles/ -.com.google.Chrome.aE4Nzc/ tmplql2t9d_/ -.com.google.Chrome.qSI7TY/ tmpm1q2cyn4/ -.com.google.Chrome.sCGM9z/ tmp_m2klrxx/ -.com.google.Chrome.svwoCa/ tmux-156049/ -env.boot.1544790141.286376.174830.d/ .X0-lock -env.boot.1545057395.563833.8971.d/ .X11-unix/ -env.boot.1545224367.436330.68006.d/ .XIM-unix/ -env.boot.1545300877.259088.21394.d/ xxx -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/futk925337781/128 rom.futk /tmpfu/futk925337781/128 fv -[?2004l2019/01/03 11:26:28 Found 211 things -[211]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls *211* -[?2004lrom211.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cmp rom211.rom /tm/fp/futk925337781/128 rom128 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ rm /tmpfu/futk925337781/*-/tmp/futk925337781r/tmp/futk925337781f/tmp/futk925337781 /tmp/futk925337781 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls idls ~/.ssh -[?2004lagent-stuff.xcpu.mtv.corp.google.com config~ github id_rsa_corp-old.pub jkhh5.pub -agent.xcpu.mtv.corp.google.com console_rsa git.pub id_rsa_corp.pub jkhh5root.pub -authorized_keys console_rsa.pub google_compute_engine id_rsa_google-cert.pub john -authorized_keys2 devlabs_id_rsa google_compute_engine.pub id_rsa_google-old-cert.pub known_hosts -backup-20170411-104708 devlabs_id_rsa.pub google_compute_known_hosts id_rsa_google-old.pub localjkhh5.pub -chromium dropbear_rsa id_rsa id_rsa_google.pub sk-passwords -chromium.pub dropbear_rsa.pub id_rsa_corp-cert.pub id_rsa.pub skynet -config git id_rsa_corp-old-cert.pub jkhh34.pub skynet.pub -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9669C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/uu-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/ccmds/elvish github.com/u-root/u-root/cmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h [?25l1,1Top[?25h[?25l/[?2004h[?25h-[?25l[?25hr[?25l[?25h [?25l23,35-42 Top[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25h-[?25l[?25hr[?25l[?25h/[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l [?25h/[?25l[?25h=[?25l[?25h-[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h-[?25l[?25hr[?25l[?25h/[?25l[?25hp[?25l[?25h [?25lPattern not found: -r23,35-42 Top[?25h[?25l:[?2004h[?25he[?25l[?25h[?25l [?25hD[?25l[?25hX[?25l[?25h...[?25lECLEANER[?25h [?25l"DXECLEANER" 17L, 361C#!/bin/bashset -e -set -x -echo TEST $1echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -recho "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l0[?25h[?25l]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER9 [?25h[?25l-- INSERT --16,10All[?25h[?25lm1[?25h[?25lo2[?25h[?25ld3[?25h[?25le4[?25h[?25l5[?25h[?25lt6[?25h[?25le7[?25h[?25ls8[?25h[?25lt9[?25h[?25le20[?25h[?25lr1[?25h[?25l16,20All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 371C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9669C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/uu-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/ccmds/elvish github.com/u-root/u-root/cmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l3[?25h[?25l335-342[?25h[?25l0-337[?25h[?25l29-336[?25h[?25l5-332[?25h[?25l4-331[?25h[?25l0-327[?25h[?25l19-326[?25h[?25l8-325[?25h[?25l7-324[?25h[?25l3-320[?25h[?25l2-319[?25h[?25l1-318[?25h[?25l2-319[?25h[?25l3-320[?25h[?25l7-324[?25h[?25l8-325[?25h[?25l9-326[?25h[?25l20-327[?25h[?25l1-328[?25h[?25l2-329[?25h[?25l3-330[?25h[?25l4-331[?25h[?25l5-332[?25h[?25l-- INSERT --23,325-332 Top[?25h[?25lxcmds/sshd6-333]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l23,325-332 Top[?25h[?25l36-343[?25h[?25l-- INSERT --23,337-344 Top[?25h[?25l8-345[?25h[?25li9-346[?25h[?25ld40-347[?25h[?25l_1-348[?25h[?25lr2-349[?25h[?25ls3-350[?25h[?25la4-351[?25h[?25l.5-352[?25h[?25lp6-353[?25h[?25lu7-354[?25h[?25lb8-355[?25h[?25l23,347-354 Top[?25h[?25l1 change; before #2 8 seconds ago23,336-343 Top[?25h[?25l1-338[?25h[?25l0-337[?25h[?25l25-332[?25h[?25l4-331[?25h[?25l0-327[?25h[?25l19-326[?25h[?25l8-325[?25h[?25l7-324[?25h[?25l3-320[?25h[?25l2-319[?25h[?25l1-318[?25h[?25l0-317[?25h[?25l07-314[?25h[?25l6-313[?25h[?25l0-307[?25h[?25l290-29[?25h[?25l89-296[?25h[?25l5-292[?25h[?25l4-291[?25h[?25l0-287[?25h[?25l79-286[?25h[?25l8-285[?25h[?25l7-284[?25h[?25l3-280[?25h[?25l2-279[?25h[?25l1-278[?25h[?25l0-277[?25h[?25l67-274[?25h[?25l6-273[?25h[?25l0-267[?25h[?25l55-262[?25h[?25l4-261[?25h[?25l0-257[?25h[?25l49-256[?25h[?25l1-8 [?25h[?25l2-9[?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)uu-ccm7-24[?25h[?25l(GOPATH)uu-ccm9-26[?25h[?25l22-29[?25h[?25l3-30[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l7-54[?25h[?25l8-55[?25h[?25l9-56[?25h[?25l50-57[?25h[?25l4-61[?25h[?25l5-62[?25h[?25l8-65[?25h[?25l9-66[?25h[?25l64-71[?25h[?25l5-72[?25h[?25l8-75[?25h[?25l9-76[?25h[?25l75-82[?25h[?25l6-83[?25h[?25l5-82[?25h[?25lusr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u--root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lsr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rroot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmdds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmdss/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lbin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-roott/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/eelvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd [?25h[?25ln/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd [?25h[?25lsshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd [?25h[?25lshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd [?25h[?25lhfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25lfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25ls github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25l github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l-- INSERT --23,75-82 Top[?25h[?25li github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd6-83[?25h[?25ld github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd7-84[?25h[?25l_ github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd8-85[?25h[?25lr github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd9-86[?25h[?25ls github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd80-87[?25h[?25la github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd1-88[?25h[?25l. github.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd2-89[?25h[?25lp github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd3-90[?25h[?25lu github.com/linuxboot/dut/uinit github.com/u-root/u-roott/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/eelvish github.com/u-root/u-root/xcmds/sshd4-91[?25h[?25lb github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshd5-92[?25h[?25l23,84-91 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9666C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l idcp ~/.ssh/id_rsa.pub . -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -2019/01/03 12:28:24 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 12:28:24 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 12:28:24 "github.com/u-root/u-root/xcmds/sshd" is neither package or path/glob: cannot find package "github.com/u-root/u-root/xcmds/sshd" in any of: - /usr/local/src/projects/nobinaryblobs/go1.6/src/github.com/u-root/u-root/xcmds/sshd (from $GOROOT) - /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/sshd (from $GOPATH) -exit status 1 -Makefile:21: recipe for target 'i' failed -make: *** [i] Error 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek i -[?2004lbash: maek: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek i -[?2004lbash: maek: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -# command-line-arguments -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go:151:13: undefined: templates -Makefile:21: recipe for target 'i' failed -make: *** [i] Error 2 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [13@v': vi Makefile[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9666C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hg[?25l[?25ho[?25l[?25h.[?25l[?25hr[?25l[?25hu[?25l[?25hn[?25l[?25h [?25l23,2-9Top[?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)oot//e7-24[?25h[?25l(GOPATH)oot//e9-26[?25h[?25l22-29[?25h[?25l3-30[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l6-33[?25h[?25l7-34[?25h[?25l8-35[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l1-38[?25h[?25l2-39[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l7-44[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l4-51[?25h[?25l5-52[?25h[?25l6-53[?25h[?25l7-54[?25h[?25lot.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd ]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9656C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -2019/01/03 12:46:52 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 12:46:52 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 12:47:00 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3027359 Jan 3 12:47 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o -ls KSYM .tmp_kallsyms2.o -rom LD vmlinux -* - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5337 kB -CRC 32331d5c -Kernel: arch/x86/boot/bzImage is ready (#79) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5480496 Jan 3 12:47 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls rom* -[?2004lrom211.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk rom211.rom fv bz linux/arch/x86/boot/bzImage splat xxx/tmp/xx.rom saverom -[?2004l2019/01/03 12:48:00 Found 211 things -[211 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[211 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER -[?2004l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r - echo "date" > /dev/ttyUSB1 - ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER futk rom211.rom fv linux/arch/x86/boot/bzImage splat /tmp/xx.rom saverom^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rminnich/bin/em100 -c W25Q256FV -s -d /tmp/xx.rom -r -[?2004l[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat DXECLEANER -[?2004l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ echo "./0" > /dev/ttyUSB1 - sleep 5 - echo "./1" > /dev/ttyUSB1 - sleep 10 -  -[?2004l' - - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ' -[?2004l[?2004h> -[?2004l[?2004h> -[?2004l[?2004h> ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d rom211.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -mode tester -flag provided but not defined: -mode -Usage of ./uinit: - -C configure the network (default true) - -d string - directory to serve (default ".") - -h string - hostname (default "192.168.0.1") - -m string - what mode to run in -- device, tester, or ssh starter (default "device") - -me string - dut hostname (default "192.168.0.2") - -p string - port number (default "8080") -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 17L, 371C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hm[?25l[?25ho[?25l[?25hd[?25l[?25he[?25l[?25h [?25l16,10All[?25h[?25l1[?25h[?25lde tester]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25le tester[?25h[?25l tester[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 368C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER  -98.splat EATIT LIST RUN3 -bin.reset fail.bin LOG RUN4 -blacklist futk.remove.99/ Makefile RUN4.4.rom -commentmorecrap.bin .gitignore NOTES tyan7102.bin -commentsetupcrap.bin id_rsa.pub removeBMCcrap.bin uinit -config-4.13.0-rc7 initramfs.linux_amd64.cpio.lzma removemorecrap.bin x.bin -DIT ipmisucks.bin removesetupcrap.bin xxx -dxeclean.bin L removesomecrap.bin yyy -DXECLEANER linux/ rom211.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER -98.splat EATIT LIST RUN3 -bin.reset fail.bin LOG RUN4 -blacklist futk.remove.99/ Makefile RUN4.4.rom -commentmorecrap.bin .gitignore NOTES tyan7102.bin -commentsetupcrap.bin id_rsa.pub removeBMCcrap.bin uinit -config-4.13.0-rc7 initramfs.linux_amd64.cpio.lzma removemorecrap.bin x.bin -DIT ipmisucks.bin removesetupcrap.bin xxx -dxeclean.bin L removesomecrap.bin yyy -DXECLEANER linux/ rom211.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%)  comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ ---More--(55%)  comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ ---More--(66%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d98 -[?2004lfutk 98.splat fv ./DXECLEANER clean -2019/01/03 13:03:22 Found 313 things -2019/01/03 13:03:22 script is ./DXECLEANER -2019/01/03 13:03:32 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 13:03:32 removed [0xc00ae98900] -+ echo TEST /tmp/futk077126222/1 -TEST /tmp/futk077126222/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk077126222/1 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:04:51 Listening on 192.168.0.1:8080 at 2019-01-03 13:04:51.512528012 -0800 PST m=+0.004948128 -dmesg -^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bg -[?2004l[1]+ make d98 & -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[2090413.478133] print_req_error: 54 callbacks suppressed -[2090413.478135] print_req_error: I/O error, dev loop1, sector 9494400 -[2090413.478373] print_req_error: I/O error, dev loop1, sector 9494616 -[2090413.478442] print_req_error: I/O error, dev loop1, sector 5300224 -[2090413.478494] print_req_error: I/O error, dev loop1, sector 5300232 -[2090413.526050] print_req_error: I/O error, dev loop1, sector 85888 -[2090413.526200] print_req_error: I/O error, dev loop1, sector 86000 -[2090413.526349] print_req_error: I/O error, dev loop1, sector 20480 -[2090413.526499] print_req_error: I/O error, dev loop1, sector 20488 -[2090413.536462] print_req_error: I/O error, dev loop1, sector 5300096 -[2090413.536624] print_req_error: I/O error, dev loop1, sector 5300208 -[2090471.511176] print_req_error: 54 callbacks suppressed -[2090471.511178] print_req_error: I/O error, dev loop1, sector 9494400 -[2090471.511308] print_req_error: I/O error, dev loop1, sector 9494616 -[2090471.511372] print_req_error: I/O error, dev loop1, sector 5300224 -[2090471.511433] print_req_error: I/O error, dev loop1, sector 5300232 -[2090471.570180] print_req_error: I/O error, dev loop1, sector 85888 -[2090471.570306] print_req_error: I/O error, dev loop1, sector 86000 -[2090471.570375] print_req_error: I/O error, dev loop1, sector 20480 -[2090471.570519] print_req_error: I/O error, dev loop1, sector 20488 -[2090471.580574] print_req_error: I/O error, dev loop1, sector 5300096 -[2090471.580714] print_req_error: I/O error, dev loop1, sector 5300208 -[2112010.827903] print_req_error: 54 callbacks suppressed -[2112010.827905] print_req_error: I/O error, dev loop1, sector 9494400 -[2112010.828155] print_req_error: I/O error, dev loop1, sector 9494616 -[2112010.828225] print_req_error: I/O error, dev loop1, sector 5300224 -[2112010.828288] print_req_error: I/O error, dev loop1, sector 5300232 -[2112011.119197] print_req_error: I/O error, dev loop1, sector 85888 -[2112011.119368] print_req_error: I/O error, dev loop1, sector 86000 -[2112011.119454] print_req_error: I/O error, dev loop1, sector 20480 -[2112011.119604] print_req_error: I/O error, dev loop1, sector 20488 -[2112011.163172] print_req_error: I/O error, dev loop1, sector 5300096 -[2112011.163329] print_req_error: I/O error, dev loop1, sector 5300208 -[2112069.211288] print_req_error: 54 callbacks suppressed -[2112069.211289] print_req_error: I/O error, dev loop1, sector 9494400 -[2112069.211367] print_req_error: I/O error, dev loop1, sector 9494616 -[2112069.211400] print_req_error: I/O error, dev loop1, sector 5300224 -[2112069.211426] print_req_error: I/O error, dev loop1, sector 5300232 -[2112069.262885] print_req_error: I/O error, dev loop1, sector 85888 -[2112069.263034] print_req_error: I/O error, dev loop1, sector 86000 -[2112069.263180] print_req_error: I/O error, dev loop1, sector 20480 -[2112069.263330] print_req_error: I/O error, dev loop1, sector 20488 -[2112069.306796] print_req_error: I/O error, dev loop1, sector 5300096 -[2112069.306935] print_req_error: I/O error, dev loop1, sector 5300208 -[2133613.290508] print_req_error: 54 callbacks suppressed -[2133613.290510] print_req_error: I/O error, dev loop1, sector 9494400 -[2133613.290642] print_req_error: I/O error, dev loop1, sector 9494616 -[2133613.290676] print_req_error: I/O error, dev loop1, sector 5300224 -[2133613.290747] print_req_error: I/O error, dev loop1, sector 5300232 -[2133613.327409] print_req_error: I/O error, dev loop1, sector 85888 -[2133613.327483] print_req_error: I/O error, dev loop1, sector 86000 -[2133613.327532] print_req_error: I/O error, dev loop1, sector 20480 -[2133613.327600] print_req_error: I/O error, dev loop1, sector 20488 -[2133613.371295] print_req_error: I/O error, dev loop1, sector 5300096 -[2133613.371367] print_req_error: I/O error, dev loop1, sector 5300208 -[2133673.078115] print_req_error: 54 callbacks suppressed -[2133673.078117] print_req_error: I/O error, dev loop1, sector 9494400 -[2133673.078223] print_req_error: I/O error, dev loop1, sector 9494616 -[2133673.078280] print_req_error: I/O error, dev loop1, sector 5300224 -[2133673.078368] print_req_error: I/O error, dev loop1, sector 5300232 -[2133673.138524] print_req_error: I/O error, dev loop1, sector 85888 -[2133673.138692] print_req_error: I/O error, dev loop1, sector 86000 -[2133673.138846] print_req_error: I/O error, dev loop1, sector 20480 -[2133673.138999] print_req_error: I/O error, dev loop1, sector 20488 -[2133673.148904] print_req_error: I/O error, dev loop1, sector 5300096 -[2133673.149054] print_req_error: I/O error, dev loop1, sector 5300208 -[2155214.716211] print_req_error: 54 callbacks suppressed -[2155214.716213] print_req_error: I/O error, dev loop1, sector 9494400 -[2155214.716403] print_req_error: I/O error, dev loop1, sector 9494616 -[2155214.716465] print_req_error: I/O error, dev loop1, sector 5300224 -[2155214.716592] print_req_error: I/O error, dev loop1, sector 5300232 -[2155214.762579] print_req_error: I/O error, dev loop1, sector 85888 -[2155214.762732] print_req_error: I/O error, dev loop1, sector 86000 -[2155214.762819] print_req_error: I/O error, dev loop1, sector 20480 -[2155214.762915] print_req_error: I/O error, dev loop1, sector 20488 -[2155214.773346] print_req_error: I/O error, dev loop1, sector 5300096 -[2155214.773506] print_req_error: I/O error, dev loop1, sector 5300208 -[2155274.789779] print_req_error: 54 callbacks suppressed -[2155274.789781] print_req_error: I/O error, dev loop1, sector 9494400 -[2155274.789932] print_req_error: I/O error, dev loop1, sector 9494616 -[2155274.789990] print_req_error: I/O error, dev loop1, sector 5300224 -[2155274.790081] print_req_error: I/O error, dev loop1, sector 5300232 -[2155274.840226] print_req_error: I/O error, dev loop1, sector 85888 -[2155274.840384] print_req_error: I/O error, dev loop1, sector 86000 -[2155274.840474] print_req_error: I/O error, dev loop1, sector 20480 -[2155274.840615] print_req_error: I/O error, dev loop1, sector 20488 -[2155274.884080] print_req_error: I/O error, dev loop1, sector 5300096 -[2155274.884235] print_req_error: I/O error, dev loop1, sector 5300208 -[2176814.216805] print_req_error: 54 callbacks suppressed -[2176814.216807] print_req_error: I/O error, dev loop1, sector 9494400 -[2176814.217000] print_req_error: I/O error, dev loop1, sector 9494616 -[2176814.217072] print_req_error: I/O error, dev loop1, sector 5300224 -[2176814.217118] print_req_error: I/O error, dev loop1, sector 5300232 -[2176814.262798] print_req_error: I/O error, dev loop1, sector 85888 -[2176814.262945] print_req_error: I/O error, dev loop1, sector 86000 -[2176814.263087] print_req_error: I/O error, dev loop1, sector 20480 -[2176814.263175] print_req_error: I/O error, dev loop1, sector 20488 -[2176814.273059] print_req_error: I/O error, dev loop1, sector 5300096 -[2176814.273181] print_req_error: I/O error, dev loop1, sector 5300208 -[2176871.285406] print_req_error: 54 callbacks suppressed -[2176871.285407] print_req_error: I/O error, dev loop1, sector 9494400 -[2176871.285490] print_req_error: I/O error, dev loop1, sector 9494616 -[2176871.285523] print_req_error: I/O error, dev loop1, sector 5300224 -[2176871.285589] print_req_error: I/O error, dev loop1, sector 5300232 -[2176871.350776] print_req_error: I/O error, dev loop1, sector 85888 -[2176871.350863] print_req_error: I/O error, dev loop1, sector 86000 -[2176871.350930] print_req_error: I/O error, dev loop1, sector 20480 -[2176871.350997] print_req_error: I/O error, dev loop1, sector 20488 -[2176871.394953] print_req_error: I/O error, dev loop1, sector 5300096 -[2176871.395062] print_req_error: I/O error, dev loop1, sector 5300208 -[2198410.216834] print_req_error: 54 callbacks suppressed -[2198410.216836] print_req_error: I/O error, dev loop1, sector 9494400 -[2198410.217043] print_req_error: I/O error, dev loop1, sector 9494616 -[2198410.217109] print_req_error: I/O error, dev loop1, sector 5300224 -[2198410.217221] print_req_error: I/O error, dev loop1, sector 5300232 -[2198410.265514] print_req_error: I/O error, dev loop1, sector 85888 -[2198410.265662] print_req_error: I/O error, dev loop1, sector 86000 -[2198410.265803] print_req_error: I/O error, dev loop1, sector 20480 -[2198410.265962] print_req_error: I/O error, dev loop1, sector 20488 -[2198410.275651] print_req_error: I/O error, dev loop1, sector 5300096 -[2198410.275805] print_req_error: I/O error, dev loop1, sector 5300208 -[2198467.955698] print_req_error: 54 callbacks suppressed -[2198467.955700] print_req_error: I/O error, dev loop1, sector 9494400 -[2198467.955818] print_req_error: I/O error, dev loop1, sector 9494616 -[2198467.955881] print_req_error: I/O error, dev loop1, sector 5300224 -[2198467.956008] print_req_error: I/O error, dev loop1, sector 5300232 -[2198467.998405] print_req_error: I/O error, dev loop1, sector 85888 -[2198467.998555] print_req_error: I/O error, dev loop1, sector 86000 -[2198467.998681] print_req_error: I/O error, dev loop1, sector 20480 -[2198467.998824] print_req_error: I/O error, dev loop1, sector 20488 -[2198468.008641] print_req_error: I/O error, dev loop1, sector 5300096 -[2198468.008772] print_req_error: I/O error, dev loop1, sector 5300208 -[2220008.530143] print_req_error: 54 callbacks suppressed -[2220008.530145] print_req_error: I/O error, dev loop1, sector 9494400 -[2220008.530379] print_req_error: I/O error, dev loop1, sector 9494616 -[2220008.530446] print_req_error: I/O error, dev loop1, sector 5300224 -[2220008.530544] print_req_error: I/O error, dev loop1, sector 5300232 -[2220008.575136] print_req_error: I/O error, dev loop1, sector 85888 -[2220008.575302] print_req_error: I/O error, dev loop1, sector 86000 -[2220008.575382] print_req_error: I/O error, dev loop1, sector 20480 -[2220008.575538] print_req_error: I/O error, dev loop1, sector 20488 -[2220008.618923] print_req_error: I/O error, dev loop1, sector 5300096 -[2220008.619082] print_req_error: I/O error, dev loop1, sector 5300208 -[2220068.189294] print_req_error: 54 callbacks suppressed -[2220068.189296] print_req_error: I/O error, dev loop1, sector 9494400 -[2220068.189432] print_req_error: I/O error, dev loop1, sector 9494616 -[2220068.189501] print_req_error: I/O error, dev loop1, sector 5300224 -[2220068.189597] print_req_error: I/O error, dev loop1, sector 5300232 -[2220068.191523] print_req_error: I/O error, dev loop1, sector 85888 -[2220068.191614] print_req_error: I/O error, dev loop1, sector 86000 -[2220068.191712] print_req_error: I/O error, dev loop1, sector 20480 -[2220068.191792] print_req_error: I/O error, dev loop1, sector 20488 -[2220068.206998] print_req_error: I/O error, dev loop1, sector 5300096 -[2220068.207121] print_req_error: I/O error, dev loop1, sector 5300208 -[2241610.122690] print_req_error: 54 callbacks suppressed -[2241610.122691] print_req_error: I/O error, dev loop1, sector 9494400 -[2241610.122911] print_req_error: I/O error, dev loop1, sector 9494616 -[2241610.123023] print_req_error: I/O error, dev loop1, sector 5300224 -[2241610.123164] print_req_error: I/O error, dev loop1, sector 5300232 -[2241610.163946] print_req_error: I/O error, dev loop1, sector 85888 -[2241610.164097] print_req_error: I/O error, dev loop1, sector 86000 -[2241610.164252] print_req_error: I/O error, dev loop1, sector 20480 -[2241610.164399] print_req_error: I/O error, dev loop1, sector 20488 -[2241610.174298] print_req_error: I/O error, dev loop1, sector 5300096 -[2241610.174438] print_req_error: I/O error, dev loop1, sector 5300208 -[2241667.816991] print_req_error: 54 callbacks suppressed -[2241667.816992] print_req_error: I/O error, dev loop1, sector 9494400 -[2241667.817107] print_req_error: I/O error, dev loop1, sector 9494616 -[2241667.817168] print_req_error: I/O error, dev loop1, sector 5300224 -[2241667.817293] print_req_error: I/O error, dev loop1, sector 5300232 -[2241667.834639] print_req_error: I/O error, dev loop1, sector 85888 -[2241667.834714] print_req_error: I/O error, dev loop1, sector 86000 -[2241667.834777] print_req_error: I/O error, dev loop1, sector 20480 -[2241667.834829] print_req_error: I/O error, dev loop1, sector 20488 -[2241667.840304] print_req_error: I/O error, dev loop1, sector 5300096 -[2241667.840445] print_req_error: I/O error, dev loop1, sector 5300208 -[2263211.023405] print_req_error: 54 callbacks suppressed -[2263211.023407] print_req_error: I/O error, dev loop1, sector 9494400 -[2263211.023630] print_req_error: I/O error, dev loop1, sector 9494616 -[2263211.023690] print_req_error: I/O error, dev loop1, sector 5300224 -[2263211.023781] print_req_error: I/O error, dev loop1, sector 5300232 -[2263211.068997] print_req_error: I/O error, dev loop1, sector 85888 -[2263211.069093] print_req_error: I/O error, dev loop1, sector 86000 -[2263211.069188] print_req_error: I/O error, dev loop1, sector 20480 -[2263211.069250] print_req_error: I/O error, dev loop1, sector 20488 -[2263211.079662] print_req_error: I/O error, dev loop1, sector 5300096 -[2263211.079824] print_req_error: I/O error, dev loop1, sector 5300208 -[2263273.419934] print_req_error: 54 callbacks suppressed -[2263273.419935] print_req_error: I/O error, dev loop1, sector 9494400 -[2263273.420013] print_req_error: I/O error, dev loop1, sector 9494616 -[2263273.420046] print_req_error: I/O error, dev loop1, sector 5300224 -[2263273.420077] print_req_error: I/O error, dev loop1, sector 5300232 -[2263273.457260] print_req_error: I/O error, dev loop1, sector 85888 -[2263273.457415] print_req_error: I/O error, dev loop1, sector 86000 -[2263273.457554] print_req_error: I/O error, dev loop1, sector 20480 -[2263273.457698] print_req_error: I/O error, dev loop1, sector 20488 -[2263273.467665] print_req_error: I/O error, dev loop1, sector 5300096 -[2263273.467828] print_req_error: I/O error, dev loop1, sector 5300208 -[2284812.645887] print_req_error: 54 callbacks suppressed -[2284812.645888] print_req_error: I/O error, dev loop1, sector 9494400 -[2284812.646092] print_req_error: I/O error, dev loop1, sector 9494616 -[2284812.646153] print_req_error: I/O error, dev loop1, sector 5300224 -[2284812.646282] print_req_error: I/O error, dev loop1, sector 5300232 -[2284812.693987] print_req_error: I/O error, dev loop1, sector 85888 -[2284812.694131] print_req_error: I/O error, dev loop1, sector 86000 -[2284812.694209] print_req_error: I/O error, dev loop1, sector 20480 -[2284812.694338] print_req_error: I/O error, dev loop1, sector 20488 -[2284812.704225] print_req_error: I/O error, dev loop1, sector 5300096 -[2284812.704376] print_req_error: I/O error, dev loop1, sector 5300208 -[2284870.918182] print_req_error: 54 callbacks suppressed -[2284870.918184] print_req_error: I/O error, dev loop1, sector 9494400 -[2284870.918315] print_req_error: I/O error, dev loop1, sector 9494616 -[2284870.918374] print_req_error: I/O error, dev loop1, sector 5300224 -[2284870.918498] print_req_error: I/O error, dev loop1, sector 5300232 -[2284870.982223] print_req_error: I/O error, dev loop1, sector 85888 -[2284870.982373] print_req_error: I/O error, dev loop1, sector 86000 -[2284870.982481] print_req_error: I/O error, dev loop1, sector 20480 -[2284870.982550] print_req_error: I/O error, dev loop1, sector 20488 -[2284870.992423] print_req_error: I/O error, dev loop1, sector 5300096 -[2284870.992562] print_req_error: I/O error, dev loop1, sector 5300208 -[2306295.202505] print_req_error: 54 callbacks suppressed -[2306295.202507] print_req_error: I/O error, dev loop1, sector 9494400 -[2306295.202726] print_req_error: I/O error, dev loop1, sector 9494616 -[2306295.202797] print_req_error: I/O error, dev loop1, sector 5300224 -[2306295.202935] print_req_error: I/O error, dev loop1, sector 5300232 -[2306295.260881] print_req_error: I/O error, dev loop1, sector 85888 -[2306295.261025] print_req_error: I/O error, dev loop1, sector 86000 -[2306295.261164] print_req_error: I/O error, dev loop1, sector 20480 -[2306295.261304] print_req_error: I/O error, dev loop1, sector 20488 -[2306295.271478] print_req_error: I/O error, dev loop1, sector 5300096 -[2306295.271653] print_req_error: I/O error, dev loop1, sector 5300208 -[2306359.775188] print_req_error: 54 callbacks suppressed -[2306359.775190] print_req_error: I/O error, dev loop1, sector 9494400 -[2306359.775324] print_req_error: I/O error, dev loop1, sector 9494616 -[2306359.775383] print_req_error: I/O error, dev loop1, sector 5300224 -[2306359.775507] print_req_error: I/O error, dev loop1, sector 5300232 -[2306360.300717] print_req_error: I/O error, dev loop1, sector 85888 -[2306360.300895] print_req_error: I/O error, dev loop1, sector 86000 -[2306360.300979] print_req_error: I/O error, dev loop1, sector 20480 -[2306360.301048] print_req_error: I/O error, dev loop1, sector 20488 -[2306360.414414] print_req_error: I/O error, dev loop1, sector 5300096 -[2306360.414576] print_req_error: I/O error, dev loop1, sector 5300208 -[2326444.973753] print_req_error: 54 callbacks suppressed -[2326444.973755] print_req_error: I/O error, dev loop1, sector 9494400 -[2326444.973985] print_req_error: I/O error, dev loop1, sector 9494616 -[2326444.974048] print_req_error: I/O error, dev loop1, sector 5300224 -[2326444.974141] print_req_error: I/O error, dev loop1, sector 5300232 -[2326445.023289] print_req_error: I/O error, dev loop1, sector 85888 -[2326445.023437] print_req_error: I/O error, dev loop1, sector 86000 -[2326445.023582] print_req_error: I/O error, dev loop1, sector 20480 -[2326445.023730] print_req_error: I/O error, dev loop1, sector 20488 -[2326445.033675] print_req_error: I/O error, dev loop1, sector 5300096 -[2326445.033835] print_req_error: I/O error, dev loop1, sector 5300208 -[2326503.689529] print_req_error: 54 callbacks suppressed -[2326503.689531] print_req_error: I/O error, dev loop1, sector 9494400 -[2326503.689617] print_req_error: I/O error, dev loop1, sector 9494616 -[2326503.689650] print_req_error: I/O error, dev loop1, sector 5300224 -[2326503.689724] print_req_error: I/O error, dev loop1, sector 5300232 -[2326503.733569] print_req_error: I/O error, dev loop1, sector 85888 -[2326503.733658] print_req_error: I/O error, dev loop1, sector 86000 -[2326503.733691] print_req_error: I/O error, dev loop1, sector 20480 -[2326503.733762] print_req_error: I/O error, dev loop1, sector 20488 -[2326503.777500] print_req_error: I/O error, dev loop1, sector 5300096 -[2326503.777581] print_req_error: I/O error, dev loop1, sector 5300208 -[2348048.088540] print_req_error: 54 callbacks suppressed -[2348048.088542] print_req_error: I/O error, dev loop1, sector 9494400 -[2348048.088748] print_req_error: I/O error, dev loop1, sector 9494616 -[2348048.088817] print_req_error: I/O error, dev loop1, sector 5300224 -[2348048.088912] print_req_error: I/O error, dev loop1, sector 5300232 -[2348048.153775] print_req_error: I/O error, dev loop1, sector 85888 -[2348048.153921] print_req_error: I/O error, dev loop1, sector 86000 -[2348048.154021] print_req_error: I/O error, dev loop1, sector 20480 -[2348048.154118] print_req_error: I/O error, dev loop1, sector 20488 -[2348048.164476] print_req_error: I/O error, dev loop1, sector 5300096 -[2348048.164622] print_req_error: I/O error, dev loop1, sector 5300208 -[2348106.031526] print_req_error: 54 callbacks suppressed -[2348106.031527] print_req_error: I/O error, dev loop1, sector 9494400 -[2348106.031651] print_req_error: I/O error, dev loop1, sector 9494616 -[2348106.031711] print_req_error: I/O error, dev loop1, sector 5300224 -[2348106.031803] print_req_error: I/O error, dev loop1, sector 5300232 -[2348106.064496] print_req_error: I/O error, dev loop1, sector 85888 -[2348106.064658] print_req_error: I/O error, dev loop1, sector 86000 -[2348106.064743] print_req_error: I/O error, dev loop1, sector 20480 -[2348106.064889] print_req_error: I/O error, dev loop1, sector 20488 -[2348106.108566] print_req_error: I/O error, dev loop1, sector 5300096 -[2348106.108714] print_req_error: I/O error, dev loop1, sector 5300208 -[2369643.393219] print_req_error: 54 callbacks suppressed -[2369643.393220] print_req_error: I/O error, dev loop1, sector 9494400 -[2369643.393441] print_req_error: I/O error, dev loop1, sector 9494616 -[2369643.393502] print_req_error: I/O error, dev loop1, sector 5300224 -[2369643.393590] print_req_error: I/O error, dev loop1, sector 5300232 -[2369643.480266] print_req_error: I/O error, dev loop1, sector 85888 -[2369643.480414] print_req_error: I/O error, dev loop1, sector 86000 -[2369643.480497] print_req_error: I/O error, dev loop1, sector 20480 -[2369643.480613] print_req_error: I/O error, dev loop1, sector 20488 -[2369643.490617] print_req_error: I/O error, dev loop1, sector 5300096 -[2369643.490773] print_req_error: I/O error, dev loop1, sector 5300208 -[2369698.686380] print_req_error: 54 callbacks suppressed -[2369698.686382] print_req_error: I/O error, dev loop1, sector 9494400 -[2369698.686529] print_req_error: I/O error, dev loop1, sector 9494616 -[2369698.686605] print_req_error: I/O error, dev loop1, sector 5300224 -[2369698.686721] print_req_error: I/O error, dev loop1, sector 5300232 -[2369698.746285] print_req_error: I/O error, dev loop1, sector 85888 -[2369698.746425] print_req_error: I/O error, dev loop1, sector 86000 -[2369698.746569] print_req_error: I/O error, dev loop1, sector 20480 -[2369698.746704] print_req_error: I/O error, dev loop1, sector 20488 -[2369698.756858] print_req_error: I/O error, dev loop1, sector 5300096 -[2369698.757014] print_req_error: I/O error, dev loop1, sector 5300208 -[2391240.449429] print_req_error: 54 callbacks suppressed -[2391240.449430] print_req_error: I/O error, dev loop1, sector 9494400 -[2391240.449652] print_req_error: I/O error, dev loop1, sector 9494616 -[2391240.449715] print_req_error: I/O error, dev loop1, sector 5300224 -[2391240.449806] print_req_error: I/O error, dev loop1, sector 5300232 -[2391240.499313] print_req_error: I/O error, dev loop1, sector 85888 -[2391240.499451] print_req_error: I/O error, dev loop1, sector 86000 -[2391240.499588] print_req_error: I/O error, dev loop1, sector 20480 -[2391240.499734] print_req_error: I/O error, dev loop1, sector 20488 -[2391240.509801] print_req_error: I/O error, dev loop1, sector 5300096 -[2391240.509975] print_req_error: I/O error, dev loop1, sector 5300208 -[2391297.880530] print_req_error: 54 callbacks suppressed -[2391297.880531] print_req_error: I/O error, dev loop1, sector 9494400 -[2391297.880601] print_req_error: I/O error, dev loop1, sector 9494616 -[2391297.880716] print_req_error: I/O error, dev loop1, sector 5300224 -[2391297.880809] print_req_error: I/O error, dev loop1, sector 5300232 -[2391297.910109] print_req_error: I/O error, dev loop1, sector 85888 -[2391297.910248] print_req_error: I/O error, dev loop1, sector 86000 -[2391297.910331] print_req_error: I/O error, dev loop1, sector 20480 -[2391297.910459] print_req_error: I/O error, dev loop1, sector 20488 -[2391297.953994] print_req_error: I/O error, dev loop1, sector 5300096 -[2391297.954151] print_req_error: I/O error, dev loop1, sector 5300208 -[2412846.155681] print_req_error: 54 callbacks suppressed -[2412846.155682] print_req_error: I/O error, dev loop1, sector 9494400 -[2412846.155929] print_req_error: I/O error, dev loop1, sector 9494616 -[2412846.156000] print_req_error: I/O error, dev loop1, sector 5300224 -[2412846.156094] print_req_error: I/O error, dev loop1, sector 5300232 -[2412846.193598] print_req_error: I/O error, dev loop1, sector 85888 -[2412846.193724] print_req_error: I/O error, dev loop1, sector 86000 -[2412846.193843] print_req_error: I/O error, dev loop1, sector 20480 -[2412846.193942] print_req_error: I/O error, dev loop1, sector 20488 -[2412846.204186] print_req_error: I/O error, dev loop1, sector 5300096 -[2412846.204328] print_req_error: I/O error, dev loop1, sector 5300208 -[2412902.913051] print_req_error: 54 callbacks suppressed -[2412902.913053] print_req_error: I/O error, dev loop1, sector 9494400 -[2412902.913171] print_req_error: I/O error, dev loop1, sector 9494616 -[2412902.913280] print_req_error: I/O error, dev loop1, sector 5300224 -[2412902.913371] print_req_error: I/O error, dev loop1, sector 5300232 -[2412902.971032] print_req_error: I/O error, dev loop1, sector 85888 -[2412902.971175] print_req_error: I/O error, dev loop1, sector 86000 -[2412902.971321] print_req_error: I/O error, dev loop1, sector 20480 -[2412902.971416] print_req_error: I/O error, dev loop1, sector 20488 -[2412902.981552] print_req_error: I/O error, dev loop1, sector 5300096 -[2412902.981690] print_req_error: I/O error, dev loop1, sector 5300208 -[2434442.158586] print_req_error: 54 callbacks suppressed -[2434442.158588] print_req_error: I/O error, dev loop1, sector 9494400 -[2434442.158736] print_req_error: I/O error, dev loop1, sector 9494616 -[2434442.158813] print_req_error: I/O error, dev loop1, sector 5300224 -[2434442.158893] print_req_error: I/O error, dev loop1, sector 5300232 -[2434442.201518] print_req_error: I/O error, dev loop1, sector 85888 -[2434442.201659] print_req_error: I/O error, dev loop1, sector 86000 -[2434442.201728] print_req_error: I/O error, dev loop1, sector 20480 -[2434442.201859] print_req_error: I/O error, dev loop1, sector 20488 -[2434442.211940] print_req_error: I/O error, dev loop1, sector 5300096 -[2434442.212094] print_req_error: I/O error, dev loop1, sector 5300208 -[2434499.436873] print_req_error: 54 callbacks suppressed -[2434499.436875] print_req_error: I/O error, dev loop1, sector 9494400 -[2434499.436971] print_req_error: I/O error, dev loop1, sector 9494616 -[2434499.437029] print_req_error: I/O error, dev loop1, sector 5300224 -[2434499.437121] print_req_error: I/O error, dev loop1, sector 5300232 -[2434499.500723] print_req_error: I/O error, dev loop1, sector 85888 -[2434499.500862] print_req_error: I/O error, dev loop1, sector 86000 -[2434499.500997] print_req_error: I/O error, dev loop1, sector 20480 -[2434499.501130] print_req_error: I/O error, dev loop1, sector 20488 -[2434499.511433] print_req_error: I/O error, dev loop1, sector 5300096 -[2434499.511572] print_req_error: I/O error, dev loop1, sector 5300208 -[2456103.668662] print_req_error: 54 callbacks suppressed -[2456103.668664] print_req_error: I/O error, dev loop1, sector 9494400 -[2456103.668903] print_req_error: I/O error, dev loop1, sector 9494616 -[2456103.668969] print_req_error: I/O error, dev loop1, sector 5300224 -[2456103.669069] print_req_error: I/O error, dev loop1, sector 5300232 -[2456103.749691] print_req_error: I/O error, dev loop1, sector 85888 -[2456103.749847] print_req_error: I/O error, dev loop1, sector 86000 -[2456103.749925] print_req_error: I/O error, dev loop1, sector 20480 -[2456103.750063] print_req_error: I/O error, dev loop1, sector 20488 -[2456103.759881] print_req_error: I/O error, dev loop1, sector 5300096 -[2456103.760037] print_req_error: I/O error, dev loop1, sector 5300208 -[2456163.819983] print_req_error: 54 callbacks suppressed -[2456163.819984] print_req_error: I/O error, dev loop1, sector 9494400 -[2456163.820134] print_req_error: I/O error, dev loop1, sector 9494616 -[2456163.820198] print_req_error: I/O error, dev loop1, sector 5300224 -[2456163.820294] print_req_error: I/O error, dev loop1, sector 5300232 -[2456163.871015] print_req_error: I/O error, dev loop1, sector 85888 -[2456163.871166] print_req_error: I/O error, dev loop1, sector 86000 -[2456163.871280] print_req_error: I/O error, dev loop1, sector 20480 -[2456163.871393] print_req_error: I/O error, dev loop1, sector 20488 -[2456163.881601] print_req_error: I/O error, dev loop1, sector 5300096 -[2456163.881747] print_req_error: I/O error, dev loop1, sector 5300208 -[2477643.216650] print_req_error: 54 callbacks suppressed -[2477643.216652] print_req_error: I/O error, dev loop1, sector 9494400 -[2477643.216879] print_req_error: I/O error, dev loop1, sector 9494616 -[2477643.216944] print_req_error: I/O error, dev loop1, sector 5300224 -[2477643.217031] print_req_error: I/O error, dev loop1, sector 5300232 -[2477643.259151] print_req_error: I/O error, dev loop1, sector 85888 -[2477643.259303] print_req_error: I/O error, dev loop1, sector 86000 -[2477643.259453] print_req_error: I/O error, dev loop1, sector 20480 -[2477643.259603] print_req_error: I/O error, dev loop1, sector 20488 -[2477643.269553] print_req_error: I/O error, dev loop1, sector 5300096 -[2477643.269705] print_req_error: I/O error, dev loop1, sector 5300208 -[2477700.948247] print_req_error: 54 callbacks suppressed -[2477700.948249] print_req_error: I/O error, dev loop1, sector 9494400 -[2477700.948357] print_req_error: I/O error, dev loop1, sector 9494616 -[2477700.948415] print_req_error: I/O error, dev loop1, sector 5300224 -[2477700.948506] print_req_error: I/O error, dev loop1, sector 5300232 -[2477700.952272] print_req_error: I/O error, dev loop1, sector 85888 -[2477700.952413] print_req_error: I/O error, dev loop1, sector 86000 -[2477700.952509] print_req_error: I/O error, dev loop1, sector 20480 -[2477700.952573] print_req_error: I/O error, dev loop1, sector 20488 -[2477700.957689] print_req_error: I/O error, dev loop1, sector 5300096 -[2477700.957838] print_req_error: I/O error, dev loop1, sector 5300208 -[2499261.932980] print_req_error: 54 callbacks suppressed -[2499261.932982] print_req_error: I/O error, dev loop1, sector 9494400 -[2499261.933183] print_req_error: I/O error, dev loop1, sector 9494616 -[2499261.933245] print_req_error: I/O error, dev loop1, sector 5300224 -[2499261.933387] print_req_error: I/O error, dev loop1, sector 5300232 -[2499261.977326] print_req_error: I/O error, dev loop1, sector 85888 -[2499261.977491] print_req_error: I/O error, dev loop1, sector 86000 -[2499261.977580] print_req_error: I/O error, dev loop1, sector 20480 -[2499261.977735] print_req_error: I/O error, dev loop1, sector 20488 -[2499261.988056] print_req_error: I/O error, dev loop1, sector 5300096 -[2499261.988192] print_req_error: I/O error, dev loop1, sector 5300208 -[2499323.446519] print_req_error: 54 callbacks suppressed -[2499323.446520] print_req_error: I/O error, dev loop1, sector 9494400 -[2499323.446643] print_req_error: I/O error, dev loop1, sector 9494616 -[2499323.446773] print_req_error: I/O error, dev loop1, sector 5300224 -[2499323.446927] print_req_error: I/O error, dev loop1, sector 5300232 -[2499323.448940] print_req_error: I/O error, dev loop1, sector 85888 -[2499323.449103] print_req_error: I/O error, dev loop1, sector 86000 -[2499323.449161] print_req_error: I/O error, dev loop1, sector 20480 -[2499323.449291] print_req_error: I/O error, dev loop1, sector 20488 -[2499323.450739] print_req_error: I/O error, dev loop1, sector 5300096 -[2499323.450823] print_req_error: I/O error, dev loop1, sector 5300208 -[2520843.280826] print_req_error: 54 callbacks suppressed -[2520843.280827] print_req_error: I/O error, dev loop1, sector 9494400 -[2520843.281083] print_req_error: I/O error, dev loop1, sector 9494616 -[2520843.281158] print_req_error: I/O error, dev loop1, sector 5300224 -[2520843.281293] print_req_error: I/O error, dev loop1, sector 5300232 -[2520843.319983] print_req_error: I/O error, dev loop1, sector 85888 -[2520843.320096] print_req_error: I/O error, dev loop1, sector 86000 -[2520843.320261] print_req_error: I/O error, dev loop1, sector 20480 -[2520843.320414] print_req_error: I/O error, dev loop1, sector 20488 -[2520843.351829] print_req_error: I/O error, dev loop1, sector 5300096 -[2520843.351974] print_req_error: I/O error, dev loop1, sector 5300208 -[2520900.978009] print_req_error: 54 callbacks suppressed -[2520900.978010] print_req_error: I/O error, dev loop1, sector 9494400 -[2520900.978149] print_req_error: I/O error, dev loop1, sector 9494616 -[2520900.978224] print_req_error: I/O error, dev loop1, sector 5300224 -[2520900.978351] print_req_error: I/O error, dev loop1, sector 5300232 -[2520901.030631] print_req_error: I/O error, dev loop1, sector 85888 -[2520901.030781] print_req_error: I/O error, dev loop1, sector 86000 -[2520901.030848] print_req_error: I/O error, dev loop1, sector 20480 -[2520901.030920] print_req_error: I/O error, dev loop1, sector 20488 -[2520901.041341] print_req_error: I/O error, dev loop1, sector 5300096 -[2520901.041480] print_req_error: I/O error, dev loop1, sector 5300208 -[2542450.686954] print_req_error: 54 callbacks suppressed -[2542450.686956] print_req_error: I/O error, dev loop1, sector 9494400 -[2542450.687187] print_req_error: I/O error, dev loop1, sector 9494616 -[2542450.687267] print_req_error: I/O error, dev loop1, sector 5300224 -[2542450.687374] print_req_error: I/O error, dev loop1, sector 5300232 -[2542450.734988] print_req_error: I/O error, dev loop1, sector 85888 -[2542450.735139] print_req_error: I/O error, dev loop1, sector 86000 -[2542450.735291] print_req_error: I/O error, dev loop1, sector 20480 -[2542450.735441] print_req_error: I/O error, dev loop1, sector 20488 -[2542450.745541] print_req_error: I/O error, dev loop1, sector 5300096 -[2542450.745693] print_req_error: I/O error, dev loop1, sector 5300208 -[2542510.065446] print_req_error: 54 callbacks suppressed -[2542510.065448] print_req_error: I/O error, dev loop1, sector 9494400 -[2542510.065562] print_req_error: I/O error, dev loop1, sector 9494616 -[2542510.065622] print_req_error: I/O error, dev loop1, sector 5300224 -[2542510.065650] print_req_error: I/O error, dev loop1, sector 5300232 -[2542510.123230] print_req_error: I/O error, dev loop1, sector 85888 -[2542510.123379] print_req_error: I/O error, dev loop1, sector 86000 -[2542510.123519] print_req_error: I/O error, dev loop1, sector 20480 -[2542510.123663] print_req_error: I/O error, dev loop1, sector 20488 -[2542510.133786] print_req_error: I/O error, dev loop1, sector 5300096 -[2542510.133924] print_req_error: I/O error, dev loop1, sector 5300208 -[2564045.203961] print_req_error: 54 callbacks suppressed -[2564045.203962] print_req_error: I/O error, dev loop1, sector 9494400 -[2564045.204123] print_req_error: I/O error, dev loop1, sector 9494616 -[2564045.204186] print_req_error: I/O error, dev loop1, sector 5300224 -[2564045.204215] print_req_error: I/O error, dev loop1, sector 5300232 -[2564045.255472] print_req_error: I/O error, dev loop1, sector 85888 -[2564045.255599] print_req_error: I/O error, dev loop1, sector 86000 -[2564045.255744] print_req_error: I/O error, dev loop1, sector 20480 -[2564045.255842] print_req_error: I/O error, dev loop1, sector 20488 -[2564045.299007] print_req_error: I/O error, dev loop1, sector 5300096 -[2564045.299118] print_req_error: I/O error, dev loop1, sector 5300208 -[2564099.682454] print_req_error: 54 callbacks suppressed -[2564099.682456] print_req_error: I/O error, dev loop1, sector 9494400 -[2564099.682544] print_req_error: I/O error, dev loop1, sector 9494616 -[2564099.682609] print_req_error: I/O error, dev loop1, sector 5300224 -[2564099.682712] print_req_error: I/O error, dev loop1, sector 5300232 -[2564099.684605] print_req_error: I/O error, dev loop1, sector 85888 -[2564099.684726] print_req_error: I/O error, dev loop1, sector 86000 -[2564099.684823] print_req_error: I/O error, dev loop1, sector 20480 -[2564099.684913] print_req_error: I/O error, dev loop1, sector 20488 -[2564099.698660] print_req_error: I/O error, dev loop1, sector 5300096 -[2564099.698772] print_req_error: I/O error, dev loop1, sector 5300208 -[2585640.386471] print_req_error: 54 callbacks suppressed -[2585640.386473] print_req_error: I/O error, dev loop1, sector 9494400 -[2585640.386684] print_req_error: I/O error, dev loop1, sector 9494616 -[2585640.386747] print_req_error: I/O error, dev loop1, sector 5300224 -[2585640.386845] print_req_error: I/O error, dev loop1, sector 5300232 -[2585640.490270] print_req_error: I/O error, dev loop1, sector 85888 -[2585640.490372] print_req_error: I/O error, dev loop1, sector 86000 -[2585640.490509] print_req_error: I/O error, dev loop1, sector 20480 -[2585640.490604] print_req_error: I/O error, dev loop1, sector 20488 -[2585640.560227] print_req_error: I/O error, dev loop1, sector 5300096 -[2585640.560394] print_req_error: I/O error, dev loop1, sector 5300208 -[2585699.596860] print_req_error: 54 callbacks suppressed -[2585699.596861] print_req_error: I/O error, dev loop1, sector 9494400 -[2585699.596958] print_req_error: I/O error, dev loop1, sector 9494616 -[2585699.597006] print_req_error: I/O error, dev loop1, sector 5300224 -[2585699.597057] print_req_error: I/O error, dev loop1, sector 5300232 -[2585699.648223] print_req_error: I/O error, dev loop1, sector 85888 -[2585699.648388] print_req_error: I/O error, dev loop1, sector 86000 -[2585699.648536] print_req_error: I/O error, dev loop1, sector 20480 -[2585699.648637] print_req_error: I/O error, dev loop1, sector 20488 -[2585699.658832] print_req_error: I/O error, dev loop1, sector 5300096 -[2585699.658975] print_req_error: I/O error, dev loop1, sector 5300208 -[2607239.924971] print_req_error: 54 callbacks suppressed -[2607239.924973] print_req_error: I/O error, dev loop1, sector 9494400 -[2607239.925168] print_req_error: I/O error, dev loop1, sector 9494616 -[2607239.925228] print_req_error: I/O error, dev loop1, sector 5300224 -[2607239.925259] print_req_error: I/O error, dev loop1, sector 5300232 -[2607239.968843] print_req_error: I/O error, dev loop1, sector 85888 -[2607239.969008] print_req_error: I/O error, dev loop1, sector 86000 -[2607239.969091] print_req_error: I/O error, dev loop1, sector 20480 -[2607239.969255] print_req_error: I/O error, dev loop1, sector 20488 -[2607239.979299] print_req_error: I/O error, dev loop1, sector 5300096 -[2607239.979445] print_req_error: I/O error, dev loop1, sector 5300208 -[2607298.402303] print_req_error: 54 callbacks suppressed -[2607298.402304] print_req_error: I/O error, dev loop1, sector 9494400 -[2607298.402410] print_req_error: I/O error, dev loop1, sector 9494616 -[2607298.402466] print_req_error: I/O error, dev loop1, sector 5300224 -[2607298.402587] print_req_error: I/O error, dev loop1, sector 5300232 -[2607298.445597] print_req_error: I/O error, dev loop1, sector 85888 -[2607298.445741] print_req_error: I/O error, dev loop1, sector 86000 -[2607298.445885] print_req_error: I/O error, dev loop1, sector 20480 -[2607298.446035] print_req_error: I/O error, dev loop1, sector 20488 -[2607298.456281] print_req_error: I/O error, dev loop1, sector 5300096 -[2607298.456426] print_req_error: I/O error, dev loop1, sector 5300208 -[2628837.822047] print_req_error: 54 callbacks suppressed -[2628837.822048] print_req_error: I/O error, dev loop1, sector 9494400 -[2628837.822242] print_req_error: I/O error, dev loop1, sector 9494616 -[2628837.822308] print_req_error: I/O error, dev loop1, sector 5300224 -[2628837.822340] print_req_error: I/O error, dev loop1, sector 5300232 -[2628837.873366] print_req_error: I/O error, dev loop1, sector 85888 -[2628837.873515] print_req_error: I/O error, dev loop1, sector 86000 -[2628837.873657] print_req_error: I/O error, dev loop1, sector 20480 -[2628837.873764] print_req_error: I/O error, dev loop1, sector 20488 -[2628837.883752] print_req_error: I/O error, dev loop1, sector 5300096 -[2628837.883900] print_req_error: I/O error, dev loop1, sector 5300208 -[2628896.004288] print_req_error: 54 callbacks suppressed -[2628896.004290] print_req_error: I/O error, dev loop1, sector 9494400 -[2628896.004409] print_req_error: I/O error, dev loop1, sector 9494616 -[2628896.004480] print_req_error: I/O error, dev loop1, sector 5300224 -[2628896.004579] print_req_error: I/O error, dev loop1, sector 5300232 -[2628896.022008] print_req_error: I/O error, dev loop1, sector 85888 -[2628896.022118] print_req_error: I/O error, dev loop1, sector 86000 -[2628896.022227] print_req_error: I/O error, dev loop1, sector 20480 -[2628896.022335] print_req_error: I/O error, dev loop1, sector 20488 -[2628896.027460] print_req_error: I/O error, dev loop1, sector 5300096 -[2628896.027554] print_req_error: I/O error, dev loop1, sector 5300208 -[2650438.262483] print_req_error: 54 callbacks suppressed -[2650438.262485] print_req_error: I/O error, dev loop1, sector 9494400 -[2650438.262747] print_req_error: I/O error, dev loop1, sector 9494616 -[2650438.262817] print_req_error: I/O error, dev loop1, sector 5300224 -[2650438.262950] print_req_error: I/O error, dev loop1, sector 5300232 -[2650438.309559] print_req_error: I/O error, dev loop1, sector 85888 -[2650438.309743] print_req_error: I/O error, dev loop1, sector 86000 -[2650438.309830] print_req_error: I/O error, dev loop1, sector 20480 -[2650438.309974] print_req_error: I/O error, dev loop1, sector 20488 -[2650438.320558] print_req_error: I/O error, dev loop1, sector 5300096 -[2650438.320710] print_req_error: I/O error, dev loop1, sector 5300208 -[2650497.246965] print_req_error: 54 callbacks suppressed -[2650497.246967] print_req_error: I/O error, dev loop1, sector 9494400 -[2650497.247049] print_req_error: I/O error, dev loop1, sector 9494616 -[2650497.247086] print_req_error: I/O error, dev loop1, sector 5300224 -[2650497.247188] print_req_error: I/O error, dev loop1, sector 5300232 -[2650497.258079] print_req_error: I/O error, dev loop1, sector 85888 -[2650497.258191] print_req_error: I/O error, dev loop1, sector 86000 -[2650497.258251] print_req_error: I/O error, dev loop1, sector 20480 -[2650497.258374] print_req_error: I/O error, dev loop1, sector 20488 -[2650497.286243] print_req_error: I/O error, dev loop1, sector 5300096 -[2650497.286388] print_req_error: I/O error, dev loop1, sector 5300208 -[2672037.600551] print_req_error: 54 callbacks suppressed -[2672037.600552] print_req_error: I/O error, dev loop1, sector 9494400 -[2672037.600733] print_req_error: I/O error, dev loop1, sector 9494616 -[2672037.600836] print_req_error: I/O error, dev loop1, sector 5300224 -[2672037.600942] print_req_error: I/O error, dev loop1, sector 5300232 -[2672037.911080] print_req_error: I/O error, dev loop1, sector 85888 -[2672037.911252] print_req_error: I/O error, dev loop1, sector 86000 -[2672037.911338] print_req_error: I/O error, dev loop1, sector 20480 -[2672037.911409] print_req_error: I/O error, dev loop1, sector 20488 -[2672038.116902] print_req_error: I/O error, dev loop1, sector 5300096 -[2672038.117067] print_req_error: I/O error, dev loop1, sector 5300208 -[2672097.782012] print_req_error: 54 callbacks suppressed -[2672097.782014] print_req_error: I/O error, dev loop1, sector 9494400 -[2672097.782166] print_req_error: I/O error, dev loop1, sector 9494616 -[2672097.782274] print_req_error: I/O error, dev loop1, sector 5300224 -[2672097.782344] print_req_error: I/O error, dev loop1, sector 5300232 -[2672097.817002] print_req_error: I/O error, dev loop1, sector 85888 -[2672097.817144] print_req_error: I/O error, dev loop1, sector 86000 -[2672097.817221] print_req_error: I/O error, dev loop1, sector 20480 -[2672097.817375] print_req_error: I/O error, dev loop1, sector 20488 -[2672097.860971] print_req_error: I/O error, dev loop1, sector 5300096 -[2672097.861125] print_req_error: I/O error, dev loop1, sector 5300208 -[2693642.041832] print_req_error: 54 callbacks suppressed -[2693642.041833] print_req_error: I/O error, dev loop1, sector 9494400 -[2693642.042023] print_req_error: I/O error, dev loop1, sector 9494616 -[2693642.042085] print_req_error: I/O error, dev loop1, sector 5300224 -[2693642.042213] print_req_error: I/O error, dev loop1, sector 5300232 -[2693642.102519] print_req_error: I/O error, dev loop1, sector 85888 -[2693642.102699] print_req_error: I/O error, dev loop1, sector 86000 -[2693642.102850] print_req_error: I/O error, dev loop1, sector 20480 -[2693642.102998] print_req_error: I/O error, dev loop1, sector 20488 -[2693642.113049] print_req_error: I/O error, dev loop1, sector 5300096 -[2693642.113202] print_req_error: I/O error, dev loop1, sector 5300208 -[2693699.891841] print_req_error: 54 callbacks suppressed -[2693699.891842] print_req_error: I/O error, dev loop1, sector 9494400 -[2693699.891991] print_req_error: I/O error, dev loop1, sector 9494616 -[2693699.892051] print_req_error: I/O error, dev loop1, sector 5300224 -[2693699.892143] print_req_error: I/O error, dev loop1, sector 5300232 -[2693699.906214] print_req_error: I/O error, dev loop1, sector 85888 -[2693699.906325] print_req_error: I/O error, dev loop1, sector 86000 -[2693699.906384] print_req_error: I/O error, dev loop1, sector 20480 -[2693699.906475] print_req_error: I/O error, dev loop1, sector 20488 -[2693699.911921] print_req_error: I/O error, dev loop1, sector 5300096 -[2693699.912053] print_req_error: I/O error, dev loop1, sector 5300208 -[2715236.075419] print_req_error: 54 callbacks suppressed -[2715236.075420] print_req_error: I/O error, dev loop1, sector 9494400 -[2715236.075619] print_req_error: I/O error, dev loop1, sector 9494616 -[2715236.075682] print_req_error: I/O error, dev loop1, sector 5300224 -[2715236.075781] print_req_error: I/O error, dev loop1, sector 5300232 -[2715236.181342] print_req_error: I/O error, dev loop1, sector 85888 -[2715236.181498] print_req_error: I/O error, dev loop1, sector 86000 -[2715236.181646] print_req_error: I/O error, dev loop1, sector 20480 -[2715236.181802] print_req_error: I/O error, dev loop1, sector 20488 -[2715236.226301] print_req_error: I/O error, dev loop1, sector 5300096 -[2715236.226483] print_req_error: I/O error, dev loop1, sector 5300208 -[2715293.990452] print_req_error: 54 callbacks suppressed -[2715293.990454] print_req_error: I/O error, dev loop1, sector 9494400 -[2715293.990602] print_req_error: I/O error, dev loop1, sector 9494616 -[2715293.990663] print_req_error: I/O error, dev loop1, sector 5300224 -[2715293.990790] print_req_error: I/O error, dev loop1, sector 5300232 -[2715294.038690] print_req_error: I/O error, dev loop1, sector 85888 -[2715294.038834] print_req_error: I/O error, dev loop1, sector 86000 -[2715294.038978] print_req_error: I/O error, dev loop1, sector 20480 -[2715294.039116] print_req_error: I/O error, dev loop1, sector 20488 -[2715294.049167] print_req_error: I/O error, dev loop1, sector 5300096 -[2715294.049312] print_req_error: I/O error, dev loop1, sector 5300208 -[2736837.627712] print_req_error: 54 callbacks suppressed -[2736837.627714] print_req_error: I/O error, dev loop1, sector 9494400 -[2736837.627923] print_req_error: I/O error, dev loop1, sector 9494616 -[2736837.627995] print_req_error: I/O error, dev loop1, sector 5300224 -[2736837.628082] print_req_error: I/O error, dev loop1, sector 5300232 -[2736837.670124] print_req_error: I/O error, dev loop1, sector 85888 -[2736837.670291] print_req_error: I/O error, dev loop1, sector 86000 -[2736837.670390] print_req_error: I/O error, dev loop1, sector 20480 -[2736837.670546] print_req_error: I/O error, dev loop1, sector 20488 -[2736837.701903] print_req_error: I/O error, dev loop1, sector 5300096 -[2736837.702055] print_req_error: I/O error, dev loop1, sector 5300208 -[2736894.915792] print_req_error: 54 callbacks suppressed -[2736894.915794] print_req_error: I/O error, dev loop1, sector 9494400 -[2736894.915945] print_req_error: I/O error, dev loop1, sector 9494616 -[2736894.916011] print_req_error: I/O error, dev loop1, sector 5300224 -[2736894.916044] print_req_error: I/O error, dev loop1, sector 5300232 -[2736894.918335] print_req_error: I/O error, dev loop1, sector 85888 -[2736894.918472] print_req_error: I/O error, dev loop1, sector 86000 -[2736894.918551] print_req_error: I/O error, dev loop1, sector 20480 -[2736894.918601] print_req_error: I/O error, dev loop1, sector 20488 -[2736894.924535] print_req_error: I/O error, dev loop1, sector 5300096 -[2736894.924645] print_req_error: I/O error, dev loop1, sector 5300208 -[2758439.253962] print_req_error: 54 callbacks suppressed -[2758439.253964] print_req_error: I/O error, dev loop1, sector 9494400 -[2758439.254136] print_req_error: I/O error, dev loop1, sector 9494616 -[2758439.254234] print_req_error: I/O error, dev loop1, sector 5300224 -[2758439.254353] print_req_error: I/O error, dev loop1, sector 5300232 -[2758439.302007] print_req_error: I/O error, dev loop1, sector 85888 -[2758439.302167] print_req_error: I/O error, dev loop1, sector 86000 -[2758439.302259] print_req_error: I/O error, dev loop1, sector 20480 -[2758439.302416] print_req_error: I/O error, dev loop1, sector 20488 -[2758439.312317] print_req_error: I/O error, dev loop1, sector 5300096 -[2758439.312473] print_req_error: I/O error, dev loop1, sector 5300208 -[2758497.709296] print_req_error: 54 callbacks suppressed -[2758497.709298] print_req_error: I/O error, dev loop1, sector 9494400 -[2758497.709422] print_req_error: I/O error, dev loop1, sector 9494616 -[2758497.709486] print_req_error: I/O error, dev loop1, sector 5300224 -[2758497.709520] print_req_error: I/O error, dev loop1, sector 5300232 -[2758497.711161] print_req_error: I/O error, dev loop1, sector 85888 -[2758497.711312] print_req_error: I/O error, dev loop1, sector 86000 -[2758497.711387] print_req_error: I/O error, dev loop1, sector 20480 -[2758497.711504] print_req_error: I/O error, dev loop1, sector 20488 -[2758497.712560] print_req_error: I/O error, dev loop1, sector 5300096 -[2758497.712682] print_req_error: I/O error, dev loop1, sector 5300208 -[2780036.121667] print_req_error: 54 callbacks suppressed -[2780036.121668] print_req_error: I/O error, dev loop1, sector 9494400 -[2780036.121801] print_req_error: I/O error, dev loop1, sector 9494616 -[2780036.121836] print_req_error: I/O error, dev loop1, sector 5300224 -[2780036.121970] print_req_error: I/O error, dev loop1, sector 5300232 -[2780036.173720] print_req_error: I/O error, dev loop1, sector 85888 -[2780036.173889] print_req_error: I/O error, dev loop1, sector 86000 -[2780036.173972] print_req_error: I/O error, dev loop1, sector 20480 -[2780036.174117] print_req_error: I/O error, dev loop1, sector 20488 -[2780036.205487] print_req_error: I/O error, dev loop1, sector 5300096 -[2780036.205586] print_req_error: I/O error, dev loop1, sector 5300208 -[2780092.970132] print_req_error: 54 callbacks suppressed -[2780092.970156] print_req_error: I/O error, dev loop1, sector 9494400 -[2780092.970257] print_req_error: I/O error, dev loop1, sector 9494616 -[2780092.970319] print_req_error: I/O error, dev loop1, sector 5300224 -[2780092.970406] print_req_error: I/O error, dev loop1, sector 5300232 -[2780092.971506] print_req_error: I/O error, dev loop1, sector 85888 -[2780092.971588] print_req_error: I/O error, dev loop1, sector 86000 -[2780092.971616] print_req_error: I/O error, dev loop1, sector 20480 -[2780092.971684] print_req_error: I/O error, dev loop1, sector 20488 -[2780092.983513] print_req_error: I/O error, dev loop1, sector 5300096 -[2780092.983667] print_req_error: I/O error, dev loop1, sector 5300208 -[2801637.102362] print_req_error: 54 callbacks suppressed -[2801637.102364] print_req_error: I/O error, dev loop1, sector 9494400 -[2801637.102544] print_req_error: I/O error, dev loop1, sector 9494616 -[2801637.102678] print_req_error: I/O error, dev loop1, sector 5300224 -[2801637.102801] print_req_error: I/O error, dev loop1, sector 5300232 -[2801637.149329] print_req_error: I/O error, dev loop1, sector 85888 -[2801637.149496] print_req_error: I/O error, dev loop1, sector 86000 -[2801637.149590] print_req_error: I/O error, dev loop1, sector 20480 -[2801637.149745] print_req_error: I/O error, dev loop1, sector 20488 -[2801637.193116] print_req_error: I/O error, dev loop1, sector 5300096 -[2801637.193267] print_req_error: I/O error, dev loop1, sector 5300208 -[2801698.988086] print_req_error: 54 callbacks suppressed -[2801698.988088] print_req_error: I/O error, dev loop1, sector 9494400 -[2801698.988264] print_req_error: I/O error, dev loop1, sector 9494616 -[2801698.988328] print_req_error: I/O error, dev loop1, sector 5300224 -[2801698.988374] print_req_error: I/O error, dev loop1, sector 5300232 -[2801699.037381] print_req_error: I/O error, dev loop1, sector 85888 -[2801699.037524] print_req_error: I/O error, dev loop1, sector 86000 -[2801699.037602] print_req_error: I/O error, dev loop1, sector 20480 -[2801699.037739] print_req_error: I/O error, dev loop1, sector 20488 -[2801699.048017] print_req_error: I/O error, dev loop1, sector 5300096 -[2801699.048163] print_req_error: I/O error, dev loop1, sector 5300208 -[2823236.589303] print_req_error: 54 callbacks suppressed -[2823236.589305] print_req_error: I/O error, dev loop1, sector 9494400 -[2823236.589546] print_req_error: I/O error, dev loop1, sector 9494616 -[2823236.589611] print_req_error: I/O error, dev loop1, sector 5300224 -[2823236.589706] print_req_error: I/O error, dev loop1, sector 5300232 -[2823237.123073] print_req_error: I/O error, dev loop1, sector 85888 -[2823237.123244] print_req_error: I/O error, dev loop1, sector 86000 -[2823237.123328] print_req_error: I/O error, dev loop1, sector 20480 -[2823237.123469] print_req_error: I/O error, dev loop1, sector 20488 -[2823237.154731] print_req_error: I/O error, dev loop1, sector 5300096 -[2823237.154883] print_req_error: I/O error, dev loop1, sector 5300208 -[2823294.094139] print_req_error: 54 callbacks suppressed -[2823294.094140] print_req_error: I/O error, dev loop1, sector 9494400 -[2823294.094226] print_req_error: I/O error, dev loop1, sector 9494616 -[2823294.094293] print_req_error: I/O error, dev loop1, sector 5300224 -[2823294.094368] print_req_error: I/O error, dev loop1, sector 5300232 -[2823294.145004] print_req_error: I/O error, dev loop1, sector 85888 -[2823294.145141] print_req_error: I/O error, dev loop1, sector 86000 -[2823294.145215] print_req_error: I/O error, dev loop1, sector 20480 -[2823294.145341] print_req_error: I/O error, dev loop1, sector 20488 -[2823294.155207] print_req_error: I/O error, dev loop1, sector 5300096 -[2823294.155303] print_req_error: I/O error, dev loop1, sector 5300208 -[2844835.545593] print_req_error: 54 callbacks suppressed -[2844835.545595] print_req_error: I/O error, dev loop1, sector 9494400 -[2844835.545835] print_req_error: I/O error, dev loop1, sector 9494616 -[2844835.545901] print_req_error: I/O error, dev loop1, sector 5300224 -[2844835.545937] print_req_error: I/O error, dev loop1, sector 5300232 -[2844835.586263] print_req_error: I/O error, dev loop1, sector 85888 -[2844835.586417] print_req_error: I/O error, dev loop1, sector 86000 -[2844835.586562] print_req_error: I/O error, dev loop1, sector 20480 -[2844835.586710] print_req_error: I/O error, dev loop1, sector 20488 -[2844835.596654] print_req_error: I/O error, dev loop1, sector 5300096 -[2844835.596801] print_req_error: I/O error, dev loop1, sector 5300208 -[2844893.850206] print_req_error: 54 callbacks suppressed -[2844893.850208] print_req_error: I/O error, dev loop1, sector 9494400 -[2844893.850327] print_req_error: I/O error, dev loop1, sector 9494616 -[2844893.850387] print_req_error: I/O error, dev loop1, sector 5300224 -[2844893.850508] print_req_error: I/O error, dev loop1, sector 5300232 -[2844893.897174] print_req_error: I/O error, dev loop1, sector 85888 -[2844893.897306] print_req_error: I/O error, dev loop1, sector 86000 -[2844893.897459] print_req_error: I/O error, dev loop1, sector 20480 -[2844893.897602] print_req_error: I/O error, dev loop1, sector 20488 -[2844893.907478] print_req_error: I/O error, dev loop1, sector 5300096 -[2844893.907623] print_req_error: I/O error, dev loop1, sector 5300208 -[2866436.206426] print_req_error: 54 callbacks suppressed -[2866436.206428] print_req_error: I/O error, dev loop1, sector 9494400 -[2866436.206653] print_req_error: I/O error, dev loop1, sector 9494616 -[2866436.206711] print_req_error: I/O error, dev loop1, sector 5300224 -[2866436.206794] print_req_error: I/O error, dev loop1, sector 5300232 -[2866436.257428] print_req_error: I/O error, dev loop1, sector 85888 -[2866436.257588] print_req_error: I/O error, dev loop1, sector 86000 -[2866436.257658] print_req_error: I/O error, dev loop1, sector 20480 -[2866436.257781] print_req_error: I/O error, dev loop1, sector 20488 -[2866436.268068] print_req_error: I/O error, dev loop1, sector 5300096 -[2866436.268209] print_req_error: I/O error, dev loop1, sector 5300208 -[2866493.831641] print_req_error: 54 callbacks suppressed -[2866493.831642] print_req_error: I/O error, dev loop1, sector 9494400 -[2866493.831724] print_req_error: I/O error, dev loop1, sector 9494616 -[2866493.831758] print_req_error: I/O error, dev loop1, sector 5300224 -[2866493.831825] print_req_error: I/O error, dev loop1, sector 5300232 -[2866493.867705] print_req_error: I/O error, dev loop1, sector 85888 -[2866493.867788] print_req_error: I/O error, dev loop1, sector 86000 -[2866493.867855] print_req_error: I/O error, dev loop1, sector 20480 -[2866493.867927] print_req_error: I/O error, dev loop1, sector 20488 -[2866493.911999] print_req_error: I/O error, dev loop1, sector 5300096 -[2866493.912131] print_req_error: I/O error, dev loop1, sector 5300208 -[2888040.321150] print_req_error: 54 callbacks suppressed -[2888040.321152] print_req_error: I/O error, dev loop1, sector 9494400 -[2888040.321346] print_req_error: I/O error, dev loop1, sector 9494616 -[2888040.321408] print_req_error: I/O error, dev loop1, sector 5300224 -[2888040.321534] print_req_error: I/O error, dev loop1, sector 5300232 -[2888040.399396] print_req_error: I/O error, dev loop1, sector 85888 -[2888040.399545] print_req_error: I/O error, dev loop1, sector 86000 -[2888040.399641] print_req_error: I/O error, dev loop1, sector 20480 -[2888040.399789] print_req_error: I/O error, dev loop1, sector 20488 -[2888040.420874] print_req_error: I/O error, dev loop1, sector 5300096 -[2888040.421026] print_req_error: I/O error, dev loop1, sector 5300208 -[2888099.802044] print_req_error: 54 callbacks suppressed -[2888099.802045] print_req_error: I/O error, dev loop1, sector 9494400 -[2888099.802117] print_req_error: I/O error, dev loop1, sector 9494616 -[2888099.802168] print_req_error: I/O error, dev loop1, sector 5300224 -[2888099.802204] print_req_error: I/O error, dev loop1, sector 5300232 -[2888099.825369] print_req_error: I/O error, dev loop1, sector 85888 -[2888099.825451] print_req_error: I/O error, dev loop1, sector 86000 -[2888099.825517] print_req_error: I/O error, dev loop1, sector 20480 -[2888099.825584] print_req_error: I/O error, dev loop1, sector 20488 -[2888099.830689] print_req_error: I/O error, dev loop1, sector 5300096 -[2888099.830757] print_req_error: I/O error, dev loop1, sector 5300208 -[2909633.848576] print_req_error: 54 callbacks suppressed -[2909633.848578] print_req_error: I/O error, dev loop1, sector 9494400 -[2909633.848792] print_req_error: I/O error, dev loop1, sector 9494616 -[2909633.848886] print_req_error: I/O error, dev loop1, sector 5300224 -[2909633.848977] print_req_error: I/O error, dev loop1, sector 5300232 -[2909633.895892] print_req_error: I/O error, dev loop1, sector 85888 -[2909633.896003] print_req_error: I/O error, dev loop1, sector 86000 -[2909633.896139] print_req_error: I/O error, dev loop1, sector 20480 -[2909633.896277] print_req_error: I/O error, dev loop1, sector 20488 -[2909633.939700] print_req_error: I/O error, dev loop1, sector 5300096 -[2909633.939850] print_req_error: I/O error, dev loop1, sector 5300208 -[2909692.509340] print_req_error: 54 callbacks suppressed -[2909692.509342] print_req_error: I/O error, dev loop1, sector 9494400 -[2909692.509458] print_req_error: I/O error, dev loop1, sector 9494616 -[2909692.509522] print_req_error: I/O error, dev loop1, sector 5300224 -[2909692.509644] print_req_error: I/O error, dev loop1, sector 5300232 -[2909692.511192] print_req_error: I/O error, dev loop1, sector 85888 -[2909692.511296] print_req_error: I/O error, dev loop1, sector 86000 -[2909692.511355] print_req_error: I/O error, dev loop1, sector 20480 -[2909692.511447] print_req_error: I/O error, dev loop1, sector 20488 -[2909692.539275] print_req_error: I/O error, dev loop1, sector 5300096 -[2909692.539398] print_req_error: I/O error, dev loop1, sector 5300208 -[2931236.578934] print_req_error: 54 callbacks suppressed -[2931236.578936] print_req_error: I/O error, dev loop1, sector 9494400 -[2931236.579183] print_req_error: I/O error, dev loop1, sector 9494616 -[2931236.579254] print_req_error: I/O error, dev loop1, sector 5300224 -[2931236.579326] print_req_error: I/O error, dev loop1, sector 5300232 -[2931236.625290] print_req_error: I/O error, dev loop1, sector 85888 -[2931236.625457] print_req_error: I/O error, dev loop1, sector 86000 -[2931236.625553] print_req_error: I/O error, dev loop1, sector 20480 -[2931236.625704] print_req_error: I/O error, dev loop1, sector 20488 -[2931236.635509] print_req_error: I/O error, dev loop1, sector 5300096 -[2931236.635695] print_req_error: I/O error, dev loop1, sector 5300208 -[2931292.770310] print_req_error: 54 callbacks suppressed -[2931292.770311] print_req_error: I/O error, dev loop1, sector 9494400 -[2931292.770383] print_req_error: I/O error, dev loop1, sector 9494616 -[2931292.770447] print_req_error: I/O error, dev loop1, sector 5300224 -[2931292.770533] print_req_error: I/O error, dev loop1, sector 5300232 -[2931292.784678] print_req_error: I/O error, dev loop1, sector 85888 -[2931292.784793] print_req_error: I/O error, dev loop1, sector 86000 -[2931292.784906] print_req_error: I/O error, dev loop1, sector 20480 -[2931292.785020] print_req_error: I/O error, dev loop1, sector 20488 -[2931292.790256] print_req_error: I/O error, dev loop1, sector 5300096 -[2931292.790413] print_req_error: I/O error, dev loop1, sector 5300208 -[2952859.457978] print_req_error: 54 callbacks suppressed -[2952859.457979] print_req_error: I/O error, dev loop1, sector 9494400 -[2952859.458200] print_req_error: I/O error, dev loop1, sector 9494616 -[2952859.458260] print_req_error: I/O error, dev loop1, sector 5300224 -[2952859.458355] print_req_error: I/O error, dev loop1, sector 5300232 -[2952859.468678] print_req_error: I/O error, dev loop1, sector 85888 -[2952859.468789] print_req_error: I/O error, dev loop1, sector 86000 -[2952859.468906] print_req_error: I/O error, dev loop1, sector 20480 -[2952859.469016] print_req_error: I/O error, dev loop1, sector 20488 -[2952859.474360] print_req_error: I/O error, dev loop1, sector 5300096 -[2952859.474490] print_req_error: I/O error, dev loop1, sector 5300208 -[2952919.959887] print_req_error: 54 callbacks suppressed -[2952919.959888] print_req_error: I/O error, dev loop1, sector 9494400 -[2952919.960046] print_req_error: I/O error, dev loop1, sector 9494616 -[2952919.960112] print_req_error: I/O error, dev loop1, sector 5300224 -[2952919.960216] print_req_error: I/O error, dev loop1, sector 5300232 -[2952919.979258] print_req_error: I/O error, dev loop1, sector 85888 -[2952919.979382] print_req_error: I/O error, dev loop1, sector 86000 -[2952919.979505] print_req_error: I/O error, dev loop1, sector 20480 -[2952919.979631] print_req_error: I/O error, dev loop1, sector 20488 -[2952919.985305] print_req_error: I/O error, dev loop1, sector 5300096 -[2952919.985473] print_req_error: I/O error, dev loop1, sector 5300208 -[2974438.403854] print_req_error: 54 callbacks suppressed -[2974438.403856] print_req_error: I/O error, dev loop1, sector 9494400 -[2974438.404102] print_req_error: I/O error, dev loop1, sector 9494616 -[2974438.404168] print_req_error: I/O error, dev loop1, sector 5300224 -[2974438.404301] print_req_error: I/O error, dev loop1, sector 5300232 -[2974438.446573] print_req_error: I/O error, dev loop1, sector 85888 -[2974438.446755] print_req_error: I/O error, dev loop1, sector 86000 -[2974438.446918] print_req_error: I/O error, dev loop1, sector 20480 -[2974438.447054] print_req_error: I/O error, dev loop1, sector 20488 -[2974438.457171] print_req_error: I/O error, dev loop1, sector 5300096 -[2974438.457319] print_req_error: I/O error, dev loop1, sector 5300208 -[2974495.048081] print_req_error: 54 callbacks suppressed -[2974495.048082] print_req_error: I/O error, dev loop1, sector 9494400 -[2974495.048154] print_req_error: I/O error, dev loop1, sector 9494616 -[2974495.048205] print_req_error: I/O error, dev loop1, sector 5300224 -[2974495.048270] print_req_error: I/O error, dev loop1, sector 5300232 -[2974495.165834] print_req_error: I/O error, dev loop1, sector 85888 -[2974495.165954] print_req_error: I/O error, dev loop1, sector 86000 -[2974495.166058] print_req_error: I/O error, dev loop1, sector 20480 -[2974495.166128] print_req_error: I/O error, dev loop1, sector 20488 -[2974495.211023] print_req_error: I/O error, dev loop1, sector 5300096 -[2974495.211165] print_req_error: I/O error, dev loop1, sector 5300208 -[2996033.988114] print_req_error: 54 callbacks suppressed -[2996033.988116] print_req_error: I/O error, dev loop1, sector 9494400 -[2996033.988350] print_req_error: I/O error, dev loop1, sector 9494616 -[2996033.988415] print_req_error: I/O error, dev loop1, sector 5300224 -[2996033.988545] print_req_error: I/O error, dev loop1, sector 5300232 -[2996033.990619] print_req_error: I/O error, dev loop1, sector 85888 -[2996033.990746] print_req_error: I/O error, dev loop1, sector 86000 -[2996033.990818] print_req_error: I/O error, dev loop1, sector 20480 -[2996033.990963] print_req_error: I/O error, dev loop1, sector 20488 -[2996034.043058] print_req_error: I/O error, dev loop1, sector 5300096 -[2996034.043221] print_req_error: I/O error, dev loop1, sector 5300208 -[2996088.856635] print_req_error: 54 callbacks suppressed -[2996088.856637] print_req_error: I/O error, dev loop1, sector 9494400 -[2996088.856790] print_req_error: I/O error, dev loop1, sector 9494616 -[2996088.856854] print_req_error: I/O error, dev loop1, sector 5300224 -[2996088.856951] print_req_error: I/O error, dev loop1, sector 5300232 -[2996088.858696] print_req_error: I/O error, dev loop1, sector 85888 -[2996088.858798] print_req_error: I/O error, dev loop1, sector 86000 -[2996088.858912] print_req_error: I/O error, dev loop1, sector 20480 -[2996088.859053] print_req_error: I/O error, dev loop1, sector 20488 -[2996088.864200] print_req_error: I/O error, dev loop1, sector 5300096 -[2996088.864284] print_req_error: I/O error, dev loop1, sector 5300208 -[3017643.020541] print_req_error: 54 callbacks suppressed -[3017643.020542] print_req_error: I/O error, dev loop1, sector 9494400 -[3017643.020763] print_req_error: I/O error, dev loop1, sector 9494616 -[3017643.020832] print_req_error: I/O error, dev loop1, sector 5300224 -[3017643.020933] print_req_error: I/O error, dev loop1, sector 5300232 -[3017643.023060] print_req_error: I/O error, dev loop1, sector 85888 -[3017643.023197] print_req_error: I/O error, dev loop1, sector 86000 -[3017643.023270] print_req_error: I/O error, dev loop1, sector 20480 -[3017643.023419] print_req_error: I/O error, dev loop1, sector 20488 -[3017643.071245] print_req_error: I/O error, dev loop1, sector 5300096 -[3017643.071415] print_req_error: I/O error, dev loop1, sector 5300208 -[3017703.145099] print_req_error: 54 callbacks suppressed -[3017703.145101] print_req_error: I/O error, dev loop1, sector 9494400 -[3017703.145152] print_req_error: I/O error, dev loop1, sector 9494616 -[3017703.145186] print_req_error: I/O error, dev loop1, sector 5300224 -[3017703.145212] print_req_error: I/O error, dev loop1, sector 5300232 -[3017703.147404] print_req_error: I/O error, dev loop1, sector 85888 -[3017703.147446] print_req_error: I/O error, dev loop1, sector 86000 -[3017703.147475] print_req_error: I/O error, dev loop1, sector 20480 -[3017703.147501] print_req_error: I/O error, dev loop1, sector 20488 -[3017703.236316] print_req_error: I/O error, dev loop1, sector 5300096 -[3017703.236466] print_req_error: I/O error, dev loop1, sector 5300208 -[3039236.023366] print_req_error: 54 callbacks suppressed -[3039236.023367] print_req_error: I/O error, dev loop1, sector 9494400 -[3039236.023593] print_req_error: I/O error, dev loop1, sector 9494616 -[3039236.023665] print_req_error: I/O error, dev loop1, sector 5300224 -[3039236.023695] print_req_error: I/O error, dev loop1, sector 5300232 -[3039236.069107] print_req_error: I/O error, dev loop1, sector 85888 -[3039236.069268] print_req_error: I/O error, dev loop1, sector 86000 -[3039236.069363] print_req_error: I/O error, dev loop1, sector 20480 -[3039236.069522] print_req_error: I/O error, dev loop1, sector 20488 -[3039236.079332] print_req_error: I/O error, dev loop1, sector 5300096 -[3039236.079486] print_req_error: I/O error, dev loop1, sector 5300208 -[3039295.853058] print_req_error: 54 callbacks suppressed -[3039295.853060] print_req_error: I/O error, dev loop1, sector 9494400 -[3039295.853168] print_req_error: I/O error, dev loop1, sector 9494616 -[3039295.853226] print_req_error: I/O error, dev loop1, sector 5300224 -[3039295.853349] print_req_error: I/O error, dev loop1, sector 5300232 -[3039295.890612] print_req_error: I/O error, dev loop1, sector 85888 -[3039295.890767] print_req_error: I/O error, dev loop1, sector 86000 -[3039295.890836] print_req_error: I/O error, dev loop1, sector 20480 -[3039295.890920] print_req_error: I/O error, dev loop1, sector 20488 -[3039295.934533] print_req_error: I/O error, dev loop1, sector 5300096 -[3039295.934683] print_req_error: I/O error, dev loop1, sector 5300208 -[3060838.815272] print_req_error: 54 callbacks suppressed -[3060838.815273] print_req_error: I/O error, dev loop1, sector 9494400 -[3060838.815442] print_req_error: I/O error, dev loop1, sector 9494616 -[3060838.815516] print_req_error: I/O error, dev loop1, sector 5300224 -[3060838.815547] print_req_error: I/O error, dev loop1, sector 5300232 -[3060841.768061] print_req_error: I/O error, dev loop1, sector 85888 -[3060841.768225] print_req_error: I/O error, dev loop1, sector 86000 -[3060841.768315] print_req_error: I/O error, dev loop1, sector 20480 -[3060841.768491] print_req_error: I/O error, dev loop1, sector 20488 -[3060842.411262] print_req_error: I/O error, dev loop1, sector 5300096 -[3060842.411418] print_req_error: I/O error, dev loop1, sector 5300208 -[3060899.976945] print_req_error: 54 callbacks suppressed -[3060899.976946] print_req_error: I/O error, dev loop1, sector 9494400 -[3060899.977025] print_req_error: I/O error, dev loop1, sector 9494616 -[3060899.977059] print_req_error: I/O error, dev loop1, sector 5300224 -[3060899.977126] print_req_error: I/O error, dev loop1, sector 5300232 -[3060900.096652] print_req_error: I/O error, dev loop1, sector 85888 -[3060900.096809] print_req_error: I/O error, dev loop1, sector 86000 -[3060900.096951] print_req_error: I/O error, dev loop1, sector 20480 -[3060900.097041] print_req_error: I/O error, dev loop1, sector 20488 -[3060900.146757] print_req_error: I/O error, dev loop1, sector 5300096 -[3060900.146899] print_req_error: I/O error, dev loop1, sector 5300208 -[3082443.106383] print_req_error: 54 callbacks suppressed -[3082443.106384] print_req_error: I/O error, dev loop1, sector 9494400 -[3082443.106624] print_req_error: I/O error, dev loop1, sector 9494616 -[3082443.106675] print_req_error: I/O error, dev loop1, sector 5300224 -[3082443.106775] print_req_error: I/O error, dev loop1, sector 5300232 -[3082443.137001] print_req_error: I/O error, dev loop1, sector 85888 -[3082443.137142] print_req_error: I/O error, dev loop1, sector 86000 -[3082443.137226] print_req_error: I/O error, dev loop1, sector 20480 -[3082443.137362] print_req_error: I/O error, dev loop1, sector 20488 -[3082443.165586] print_req_error: I/O error, dev loop1, sector 5300096 -[3082443.165740] print_req_error: I/O error, dev loop1, sector 5300208 -[3082532.530318] print_req_error: 54 callbacks suppressed -[3082532.530320] print_req_error: I/O error, dev loop1, sector 9494400 -[3082532.530467] print_req_error: I/O error, dev loop1, sector 9494616 -[3082532.530524] print_req_error: I/O error, dev loop1, sector 5300224 -[3082532.530615] print_req_error: I/O error, dev loop1, sector 5300232 -[3082532.576196] print_req_error: I/O error, dev loop1, sector 85888 -[3082532.576332] print_req_error: I/O error, dev loop1, sector 86000 -[3082532.576466] print_req_error: I/O error, dev loop1, sector 20480 -[3082532.576605] print_req_error: I/O error, dev loop1, sector 20488 -[3082532.586767] print_req_error: I/O error, dev loop1, sector 5300096 -[3082532.586859] print_req_error: I/O error, dev loop1, sector 5300208 -[3104039.311075] print_req_error: 54 callbacks suppressed -[3104039.311077] print_req_error: I/O error, dev loop1, sector 9494400 -[3104039.311310] print_req_error: I/O error, dev loop1, sector 9494616 -[3104039.311374] print_req_error: I/O error, dev loop1, sector 5300224 -[3104039.311472] print_req_error: I/O error, dev loop1, sector 5300232 -[3104039.371578] print_req_error: I/O error, dev loop1, sector 85888 -[3104039.371733] print_req_error: I/O error, dev loop1, sector 86000 -[3104039.371812] print_req_error: I/O error, dev loop1, sector 20480 -[3104039.371954] print_req_error: I/O error, dev loop1, sector 20488 -[3104039.382318] print_req_error: I/O error, dev loop1, sector 5300096 -[3104039.382479] print_req_error: I/O error, dev loop1, sector 5300208 -[3104096.896355] print_req_error: 54 callbacks suppressed -[3104096.896357] print_req_error: I/O error, dev loop1, sector 9494400 -[3104096.896446] print_req_error: I/O error, dev loop1, sector 9494616 -[3104096.896509] print_req_error: I/O error, dev loop1, sector 5300224 -[3104096.896549] print_req_error: I/O error, dev loop1, sector 5300232 -[3104096.948990] print_req_error: I/O error, dev loop1, sector 85888 -[3104096.949140] print_req_error: I/O error, dev loop1, sector 86000 -[3104096.949290] print_req_error: I/O error, dev loop1, sector 20480 -[3104096.949443] print_req_error: I/O error, dev loop1, sector 20488 -[3104096.959393] print_req_error: I/O error, dev loop1, sector 5300096 -[3104096.959539] print_req_error: I/O error, dev loop1, sector 5300208 -[3125636.865105] print_req_error: 54 callbacks suppressed -[3125636.865106] print_req_error: I/O error, dev loop1, sector 9494400 -[3125636.865313] print_req_error: I/O error, dev loop1, sector 9494616 -[3125636.865373] print_req_error: I/O error, dev loop1, sector 5300224 -[3125636.865509] print_req_error: I/O error, dev loop1, sector 5300232 -[3125636.923574] print_req_error: I/O error, dev loop1, sector 85888 -[3125636.923650] print_req_error: I/O error, dev loop1, sector 86000 -[3125636.923685] print_req_error: I/O error, dev loop1, sector 20480 -[3125636.923731] print_req_error: I/O error, dev loop1, sector 20488 -[3125636.934304] print_req_error: I/O error, dev loop1, sector 5300096 -[3125636.934374] print_req_error: I/O error, dev loop1, sector 5300208 -[3125692.305122] print_req_error: 54 callbacks suppressed -[3125692.305123] print_req_error: I/O error, dev loop1, sector 9494400 -[3125692.305231] print_req_error: I/O error, dev loop1, sector 9494616 -[3125692.305289] print_req_error: I/O error, dev loop1, sector 5300224 -[3125692.305400] print_req_error: I/O error, dev loop1, sector 5300232 -[3125692.394529] print_req_error: I/O error, dev loop1, sector 85888 -[3125692.394675] print_req_error: I/O error, dev loop1, sector 86000 -[3125692.394821] print_req_error: I/O error, dev loop1, sector 20480 -[3125692.394965] print_req_error: I/O error, dev loop1, sector 20488 -[3125692.421724] print_req_error: I/O error, dev loop1, sector 5300096 -[3125692.421867] print_req_error: I/O error, dev loop1, sector 5300208 -[3147235.729527] print_req_error: 54 callbacks suppressed -[3147235.729528] print_req_error: I/O error, dev loop1, sector 9494400 -[3147235.729767] print_req_error: I/O error, dev loop1, sector 9494616 -[3147235.729843] print_req_error: I/O error, dev loop1, sector 5300224 -[3147235.729952] print_req_error: I/O error, dev loop1, sector 5300232 -[3147235.779882] print_req_error: I/O error, dev loop1, sector 85888 -[3147235.780039] print_req_error: I/O error, dev loop1, sector 86000 -[3147235.780126] print_req_error: I/O error, dev loop1, sector 20480 -[3147235.780277] print_req_error: I/O error, dev loop1, sector 20488 -[3147235.790471] print_req_error: I/O error, dev loop1, sector 5300096 -[3147235.790629] print_req_error: I/O error, dev loop1, sector 5300208 -[3147295.513257] print_req_error: 54 callbacks suppressed -[3147295.513259] print_req_error: I/O error, dev loop1, sector 9494400 -[3147295.513342] print_req_error: I/O error, dev loop1, sector 9494616 -[3147295.513376] print_req_error: I/O error, dev loop1, sector 5300224 -[3147295.513444] print_req_error: I/O error, dev loop1, sector 5300232 -[3147295.680616] print_req_error: I/O error, dev loop1, sector 85888 -[3147295.680774] print_req_error: I/O error, dev loop1, sector 86000 -[3147295.680930] print_req_error: I/O error, dev loop1, sector 20480 -[3147295.681012] print_req_error: I/O error, dev loop1, sector 20488 -[3147295.738432] print_req_error: I/O error, dev loop1, sector 5300096 -[3147295.738577] print_req_error: I/O error, dev loop1, sector 5300208 -[3168835.116700] print_req_error: 54 callbacks suppressed -[3168835.116701] print_req_error: I/O error, dev loop1, sector 9494400 -[3168835.116966] print_req_error: I/O error, dev loop1, sector 9494616 -[3168835.117037] print_req_error: I/O error, dev loop1, sector 5300224 -[3168835.117134] print_req_error: I/O error, dev loop1, sector 5300232 -[3168835.178088] print_req_error: I/O error, dev loop1, sector 85888 -[3168835.178251] print_req_error: I/O error, dev loop1, sector 86000 -[3168835.178340] print_req_error: I/O error, dev loop1, sector 20480 -[3168835.178488] print_req_error: I/O error, dev loop1, sector 20488 -[3168835.188297] print_req_error: I/O error, dev loop1, sector 5300096 -[3168835.188457] print_req_error: I/O error, dev loop1, sector 5300208 -[3168891.869300] print_req_error: 54 callbacks suppressed -[3168891.869302] print_req_error: I/O error, dev loop1, sector 9494400 -[3168891.869397] print_req_error: I/O error, dev loop1, sector 9494616 -[3168891.869426] print_req_error: I/O error, dev loop1, sector 5300224 -[3168891.869477] print_req_error: I/O error, dev loop1, sector 5300232 -[3168891.921766] print_req_error: I/O error, dev loop1, sector 85888 -[3168891.921900] print_req_error: I/O error, dev loop1, sector 86000 -[3168891.922033] print_req_error: I/O error, dev loop1, sector 20480 -[3168891.922202] print_req_error: I/O error, dev loop1, sector 20488 -[3168891.932414] print_req_error: I/O error, dev loop1, sector 5300096 -[3168891.932579] print_req_error: I/O error, dev loop1, sector 5300208 -[3190434.647128] print_req_error: 54 callbacks suppressed -[3190434.647130] print_req_error: I/O error, dev loop1, sector 9494400 -[3190434.647402] print_req_error: I/O error, dev loop1, sector 9494616 -[3190434.647479] print_req_error: I/O error, dev loop1, sector 5300224 -[3190434.647616] print_req_error: I/O error, dev loop1, sector 5300232 -[3190434.706983] print_req_error: I/O error, dev loop1, sector 85888 -[3190434.707148] print_req_error: I/O error, dev loop1, sector 86000 -[3190434.707236] print_req_error: I/O error, dev loop1, sector 20480 -[3190434.707389] print_req_error: I/O error, dev loop1, sector 20488 -[3190434.717429] print_req_error: I/O error, dev loop1, sector 5300096 -[3190434.717596] print_req_error: I/O error, dev loop1, sector 5300208 -[3190493.793657] print_req_error: 54 callbacks suppressed -[3190493.793658] print_req_error: I/O error, dev loop1, sector 9494400 -[3190493.793764] print_req_error: I/O error, dev loop1, sector 9494616 -[3190493.793822] print_req_error: I/O error, dev loop1, sector 5300224 -[3190493.793861] print_req_error: I/O error, dev loop1, sector 5300232 -[3190493.828428] print_req_error: I/O error, dev loop1, sector 85888 -[3190493.828571] print_req_error: I/O error, dev loop1, sector 86000 -[3190493.828649] print_req_error: I/O error, dev loop1, sector 20480 -[3190493.828792] print_req_error: I/O error, dev loop1, sector 20488 -[3190493.872480] print_req_error: I/O error, dev loop1, sector 5300096 -[3190493.872616] print_req_error: I/O error, dev loop1, sector 5300208 -[3212038.731204] print_req_error: 54 callbacks suppressed -[3212038.731206] print_req_error: I/O error, dev loop1, sector 9494400 -[3212038.731479] print_req_error: I/O error, dev loop1, sector 9494616 -[3212038.731563] print_req_error: I/O error, dev loop1, sector 5300224 -[3212038.731695] print_req_error: I/O error, dev loop1, sector 5300232 -[3212038.793278] print_req_error: I/O error, dev loop1, sector 85888 -[3212038.793420] print_req_error: I/O error, dev loop1, sector 86000 -[3212038.793561] print_req_error: I/O error, dev loop1, sector 20480 -[3212038.793709] print_req_error: I/O error, dev loop1, sector 20488 -[3212038.803782] print_req_error: I/O error, dev loop1, sector 5300096 -[3212038.803924] print_req_error: I/O error, dev loop1, sector 5300208 -[3212096.443414] print_req_error: 54 callbacks suppressed -[3212096.443416] print_req_error: I/O error, dev loop1, sector 9494400 -[3212096.443548] print_req_error: I/O error, dev loop1, sector 9494616 -[3212096.443648] print_req_error: I/O error, dev loop1, sector 5300224 -[3212096.443706] print_req_error: I/O error, dev loop1, sector 5300232 -[3212096.492853] print_req_error: I/O error, dev loop1, sector 85888 -[3212096.492995] print_req_error: I/O error, dev loop1, sector 86000 -[3212096.493135] print_req_error: I/O error, dev loop1, sector 20480 -[3212096.493274] print_req_error: I/O error, dev loop1, sector 20488 -[3212096.503336] print_req_error: I/O error, dev loop1, sector 5300096 -[3212096.503478] print_req_error: I/O error, dev loop1, sector 5300208 -[3233640.342726] print_req_error: 54 callbacks suppressed -[3233640.342728] print_req_error: I/O error, dev loop1, sector 9494400 -[3233640.342956] print_req_error: I/O error, dev loop1, sector 9494616 -[3233640.343021] print_req_error: I/O error, dev loop1, sector 5300224 -[3233640.343150] print_req_error: I/O error, dev loop1, sector 5300232 -[3233640.518237] print_req_error: I/O error, dev loop1, sector 85888 -[3233640.518422] print_req_error: I/O error, dev loop1, sector 86000 -[3233640.518568] print_req_error: I/O error, dev loop1, sector 20480 -[3233640.518812] print_req_error: I/O error, dev loop1, sector 20488 -[3233640.605979] print_req_error: I/O error, dev loop1, sector 5300096 -[3233640.606127] print_req_error: I/O error, dev loop1, sector 5300208 -[3233698.158090] print_req_error: 54 callbacks suppressed -[3233698.158091] print_req_error: I/O error, dev loop1, sector 9494400 -[3233698.158176] print_req_error: I/O error, dev loop1, sector 9494616 -[3233698.158209] print_req_error: I/O error, dev loop1, sector 5300224 -[3233698.158277] print_req_error: I/O error, dev loop1, sector 5300232 -[3233698.173031] print_req_error: I/O error, dev loop1, sector 85888 -[3233698.173177] print_req_error: I/O error, dev loop1, sector 86000 -[3233698.173225] print_req_error: I/O error, dev loop1, sector 20480 -[3233698.173369] print_req_error: I/O error, dev loop1, sector 20488 -[3233698.178751] print_req_error: I/O error, dev loop1, sector 5300096 -[3233698.178856] print_req_error: I/O error, dev loop1, sector 5300208 -[3255236.883197] print_req_error: 54 callbacks suppressed -[3255236.883198] print_req_error: I/O error, dev loop1, sector 9494400 -[3255236.883439] print_req_error: I/O error, dev loop1, sector 9494616 -[3255236.883506] print_req_error: I/O error, dev loop1, sector 5300224 -[3255236.883637] print_req_error: I/O error, dev loop1, sector 5300232 -[3255236.928203] print_req_error: I/O error, dev loop1, sector 85888 -[3255236.928306] print_req_error: I/O error, dev loop1, sector 86000 -[3255236.928385] print_req_error: I/O error, dev loop1, sector 20480 -[3255236.928541] print_req_error: I/O error, dev loop1, sector 20488 -[3255236.938857] print_req_error: I/O error, dev loop1, sector 5300096 -[3255236.939005] print_req_error: I/O error, dev loop1, sector 5300208 -[3255296.185782] print_req_error: 54 callbacks suppressed -[3255296.185784] print_req_error: I/O error, dev loop1, sector 9494400 -[3255296.185944] print_req_error: I/O error, dev loop1, sector 9494616 -[3255296.186017] print_req_error: I/O error, dev loop1, sector 5300224 -[3255296.186151] print_req_error: I/O error, dev loop1, sector 5300232 -[3255296.250069] print_req_error: I/O error, dev loop1, sector 85888 -[3255296.250211] print_req_error: I/O error, dev loop1, sector 86000 -[3255296.250305] print_req_error: I/O error, dev loop1, sector 20480 -[3255296.250457] print_req_error: I/O error, dev loop1, sector 20488 -[3255296.260370] print_req_error: I/O error, dev loop1, sector 5300096 -[3255296.260534] print_req_error: I/O error, dev loop1, sector 5300208 -[3276838.471936] print_req_error: 54 callbacks suppressed -[3276838.471939] print_req_error: I/O error, dev loop1, sector 9494400 -[3276838.472171] print_req_error: I/O error, dev loop1, sector 9494616 -[3276838.472304] print_req_error: I/O error, dev loop1, sector 5300224 -[3276838.472437] print_req_error: I/O error, dev loop1, sector 5300232 -[3276838.740978] print_req_error: I/O error, dev loop1, sector 85888 -[3276838.741133] print_req_error: I/O error, dev loop1, sector 86000 -[3276838.741274] print_req_error: I/O error, dev loop1, sector 20480 -[3276838.741426] print_req_error: I/O error, dev loop1, sector 20488 -[3276838.906653] print_req_error: I/O error, dev loop1, sector 5300096 -[3276838.906795] print_req_error: I/O error, dev loop1, sector 5300208 -[3276899.295988] print_req_error: 54 callbacks suppressed -[3276899.295989] print_req_error: I/O error, dev loop1, sector 9494400 -[3276899.296131] print_req_error: I/O error, dev loop1, sector 9494616 -[3276899.296186] print_req_error: I/O error, dev loop1, sector 5300224 -[3276899.296273] print_req_error: I/O error, dev loop1, sector 5300232 -[3276899.329767] print_req_error: I/O error, dev loop1, sector 85888 -[3276899.329935] print_req_error: I/O error, dev loop1, sector 86000 -[3276899.330056] print_req_error: I/O error, dev loop1, sector 20480 -[3276899.330176] print_req_error: I/O error, dev loop1, sector 20488 -[3276899.373966] print_req_error: I/O error, dev loop1, sector 5300096 -[3276899.374116] print_req_error: I/O error, dev loop1, sector 5300208 -[3298435.022426] print_req_error: 54 callbacks suppressed -[3298435.022428] print_req_error: I/O error, dev loop1, sector 9494400 -[3298435.022607] print_req_error: I/O error, dev loop1, sector 9494616 -[3298435.022667] print_req_error: I/O error, dev loop1, sector 5300224 -[3298435.022696] print_req_error: I/O error, dev loop1, sector 5300232 -[3298435.318796] print_req_error: I/O error, dev loop1, sector 85888 -[3298435.318917] print_req_error: I/O error, dev loop1, sector 86000 -[3298435.319035] print_req_error: I/O error, dev loop1, sector 20480 -[3298435.319149] print_req_error: I/O error, dev loop1, sector 20488 -[3298435.535494] print_req_error: I/O error, dev loop1, sector 5300096 -[3298435.535815] print_req_error: I/O error, dev loop1, sector 5300208 -[3298491.816365] print_req_error: 54 callbacks suppressed -[3298491.816367] print_req_error: I/O error, dev loop1, sector 9494400 -[3298491.816450] print_req_error: I/O error, dev loop1, sector 9494616 -[3298491.816483] print_req_error: I/O error, dev loop1, sector 5300224 -[3298491.816550] print_req_error: I/O error, dev loop1, sector 5300232 -[3298491.916821] print_req_error: I/O error, dev loop1, sector 85888 -[3298491.916964] print_req_error: I/O error, dev loop1, sector 86000 -[3298491.917099] print_req_error: I/O error, dev loop1, sector 20480 -[3298491.917247] print_req_error: I/O error, dev loop1, sector 20488 -[3298491.936057] print_req_error: I/O error, dev loop1, sector 5300096 -[3298491.936199] print_req_error: I/O error, dev loop1, sector 5300208 -[3320038.084433] print_req_error: 54 callbacks suppressed -[3320038.084435] print_req_error: I/O error, dev loop1, sector 9494400 -[3320038.084655] print_req_error: I/O error, dev loop1, sector 9494616 -[3320038.084722] print_req_error: I/O error, dev loop1, sector 5300224 -[3320038.084869] print_req_error: I/O error, dev loop1, sector 5300232 -[3320038.211777] print_req_error: I/O error, dev loop1, sector 85888 -[3320038.211900] print_req_error: I/O error, dev loop1, sector 86000 -[3320038.212037] print_req_error: I/O error, dev loop1, sector 20480 -[3320038.212190] print_req_error: I/O error, dev loop1, sector 20488 -[3320038.314908] print_req_error: I/O error, dev loop1, sector 5300096 -[3320038.315029] print_req_error: I/O error, dev loop1, sector 5300208 -[3320096.933509] print_req_error: 54 callbacks suppressed -[3320096.933511] print_req_error: I/O error, dev loop1, sector 9494400 -[3320096.933668] print_req_error: I/O error, dev loop1, sector 9494616 -[3320096.933788] print_req_error: I/O error, dev loop1, sector 5300224 -[3320096.933900] print_req_error: I/O error, dev loop1, sector 5300232 -[3320096.935818] print_req_error: I/O error, dev loop1, sector 85888 -[3320096.935959] print_req_error: I/O error, dev loop1, sector 86000 -[3320096.936038] print_req_error: I/O error, dev loop1, sector 20480 -[3320096.936174] print_req_error: I/O error, dev loop1, sector 20488 -[3320096.937383] print_req_error: I/O error, dev loop1, sector 5300096 -[3320096.937483] print_req_error: I/O error, dev loop1, sector 5300208 -[3341636.090522] print_req_error: 54 callbacks suppressed -[3341636.090524] print_req_error: I/O error, dev loop1, sector 9494400 -[3341636.090771] print_req_error: I/O error, dev loop1, sector 9494616 -[3341636.090837] print_req_error: I/O error, dev loop1, sector 5300224 -[3341636.090868] print_req_error: I/O error, dev loop1, sector 5300232 -[3341636.133664] print_req_error: I/O error, dev loop1, sector 85888 -[3341636.133794] print_req_error: I/O error, dev loop1, sector 86000 -[3341636.133862] print_req_error: I/O error, dev loop1, sector 20480 -[3341636.133979] print_req_error: I/O error, dev loop1, sector 20488 -[3341636.177474] print_req_error: I/O error, dev loop1, sector 5300096 -[3341636.177627] print_req_error: I/O error, dev loop1, sector 5300208 -[3341691.579292] print_req_error: 54 callbacks suppressed -[3341691.579293] print_req_error: I/O error, dev loop1, sector 9494400 -[3341691.579438] print_req_error: I/O error, dev loop1, sector 9494616 -[3341691.579499] print_req_error: I/O error, dev loop1, sector 5300224 -[3341691.579583] print_req_error: I/O error, dev loop1, sector 5300232 -[3341691.632909] print_req_error: I/O error, dev loop1, sector 85888 -[3341691.633053] print_req_error: I/O error, dev loop1, sector 86000 -[3341691.633157] print_req_error: I/O error, dev loop1, sector 20480 -[3341691.633306] print_req_error: I/O error, dev loop1, sector 20488 -[3341691.643725] print_req_error: I/O error, dev loop1, sector 5300096 -[3341691.643874] print_req_error: I/O error, dev loop1, sector 5300208 -[3363235.730879] print_req_error: 54 callbacks suppressed -[3363235.730881] print_req_error: I/O error, dev loop1, sector 9494400 -[3363235.731116] print_req_error: I/O error, dev loop1, sector 9494616 -[3363235.731181] print_req_error: I/O error, dev loop1, sector 5300224 -[3363235.731312] print_req_error: I/O error, dev loop1, sector 5300232 -[3363235.788840] print_req_error: I/O error, dev loop1, sector 85888 -[3363235.788996] print_req_error: I/O error, dev loop1, sector 86000 -[3363235.789108] print_req_error: I/O error, dev loop1, sector 20480 -[3363235.789210] print_req_error: I/O error, dev loop1, sector 20488 -[3363235.799471] print_req_error: I/O error, dev loop1, sector 5300096 -[3363235.799626] print_req_error: I/O error, dev loop1, sector 5300208 -[3363293.446109] print_req_error: 54 callbacks suppressed -[3363293.446111] print_req_error: I/O error, dev loop1, sector 9494400 -[3363293.446236] print_req_error: I/O error, dev loop1, sector 9494616 -[3363293.446300] print_req_error: I/O error, dev loop1, sector 5300224 -[3363293.446425] print_req_error: I/O error, dev loop1, sector 5300232 -[3363293.488553] print_req_error: I/O error, dev loop1, sector 85888 -[3363293.488691] print_req_error: I/O error, dev loop1, sector 86000 -[3363293.488766] print_req_error: I/O error, dev loop1, sector 20480 -[3363293.488838] print_req_error: I/O error, dev loop1, sector 20488 -[3363293.499132] print_req_error: I/O error, dev loop1, sector 5300096 -[3363293.499278] print_req_error: I/O error, dev loop1, sector 5300208 -[3384836.693947] print_req_error: 54 callbacks suppressed -[3384836.693949] print_req_error: I/O error, dev loop1, sector 9494400 -[3384836.694167] print_req_error: I/O error, dev loop1, sector 9494616 -[3384836.694233] print_req_error: I/O error, dev loop1, sector 5300224 -[3384836.694262] print_req_error: I/O error, dev loop1, sector 5300232 -[3384836.732692] print_req_error: I/O error, dev loop1, sector 85888 -[3384836.732846] print_req_error: I/O error, dev loop1, sector 86000 -[3384836.732929] print_req_error: I/O error, dev loop1, sector 20480 -[3384836.733092] print_req_error: I/O error, dev loop1, sector 20488 -[3384836.776373] print_req_error: I/O error, dev loop1, sector 5300096 -[3384836.776519] print_req_error: I/O error, dev loop1, sector 5300208 -[3384895.482130] print_req_error: 54 callbacks suppressed -[3384895.482131] print_req_error: I/O error, dev loop1, sector 9494400 -[3384895.482228] print_req_error: I/O error, dev loop1, sector 9494616 -[3384895.482336] print_req_error: I/O error, dev loop1, sector 5300224 -[3384895.482425] print_req_error: I/O error, dev loop1, sector 5300232 -[3384895.543162] print_req_error: I/O error, dev loop1, sector 85888 -[3384895.543316] print_req_error: I/O error, dev loop1, sector 86000 -[3384895.543398] print_req_error: I/O error, dev loop1, sector 20480 -[3384895.543544] print_req_error: I/O error, dev loop1, sector 20488 -[3384895.574684] print_req_error: I/O error, dev loop1, sector 5300096 -[3384895.574822] print_req_error: I/O error, dev loop1, sector 5300208 -[3406435.132607] print_req_error: 54 callbacks suppressed -[3406435.132609] print_req_error: I/O error, dev loop1, sector 9494400 -[3406435.132828] print_req_error: I/O error, dev loop1, sector 9494616 -[3406435.132888] print_req_error: I/O error, dev loop1, sector 5300224 -[3406435.132979] print_req_error: I/O error, dev loop1, sector 5300232 -[3406435.180273] print_req_error: I/O error, dev loop1, sector 85888 -[3406435.180447] print_req_error: I/O error, dev loop1, sector 86000 -[3406435.180530] print_req_error: I/O error, dev loop1, sector 20480 -[3406435.180675] print_req_error: I/O error, dev loop1, sector 20488 -[3406435.190406] print_req_error: I/O error, dev loop1, sector 5300096 -[3406435.190556] print_req_error: I/O error, dev loop1, sector 5300208 -[3406492.282656] print_req_error: 54 callbacks suppressed -[3406492.282658] print_req_error: I/O error, dev loop1, sector 9494400 -[3406492.282815] print_req_error: I/O error, dev loop1, sector 9494616 -[3406492.282879] print_req_error: I/O error, dev loop1, sector 5300224 -[3406492.282972] print_req_error: I/O error, dev loop1, sector 5300232 -[3406492.295191] print_req_error: I/O error, dev loop1, sector 85888 -[3406492.295259] print_req_error: I/O error, dev loop1, sector 86000 -[3406492.295321] print_req_error: I/O error, dev loop1, sector 20480 -[3406492.295350] print_req_error: I/O error, dev loop1, sector 20488 -[3406492.323633] print_req_error: I/O error, dev loop1, sector 5300096 -[3406492.323788] print_req_error: I/O error, dev loop1, sector 5300208 -[3428039.855980] print_req_error: 54 callbacks suppressed -[3428039.855982] print_req_error: I/O error, dev loop1, sector 9494400 -[3428039.856205] print_req_error: I/O error, dev loop1, sector 9494616 -[3428039.856271] print_req_error: I/O error, dev loop1, sector 5300224 -[3428039.856415] print_req_error: I/O error, dev loop1, sector 5300232 -[3428039.901772] print_req_error: I/O error, dev loop1, sector 85888 -[3428039.901925] print_req_error: I/O error, dev loop1, sector 86000 -[3428039.902023] print_req_error: I/O error, dev loop1, sector 20480 -[3428039.902164] print_req_error: I/O error, dev loop1, sector 20488 -[3428039.912366] print_req_error: I/O error, dev loop1, sector 5300096 -[3428039.912488] print_req_error: I/O error, dev loop1, sector 5300208 -[3428098.758644] print_req_error: 54 callbacks suppressed -[3428098.758646] print_req_error: I/O error, dev loop1, sector 9494400 -[3428098.758791] print_req_error: I/O error, dev loop1, sector 9494616 -[3428098.758847] print_req_error: I/O error, dev loop1, sector 5300224 -[3428098.758935] print_req_error: I/O error, dev loop1, sector 5300232 -[3428098.783757] print_req_error: I/O error, dev loop1, sector 85888 -[3428098.783943] print_req_error: I/O error, dev loop1, sector 86000 -[3428098.784045] print_req_error: I/O error, dev loop1, sector 20480 -[3428098.784234] print_req_error: I/O error, dev loop1, sector 20488 -[3428098.789716] print_req_error: I/O error, dev loop1, sector 5300096 -[3428098.789834] print_req_error: I/O error, dev loop1, sector 5300208 -[3449636.264452] print_req_error: 54 callbacks suppressed -[3449636.264453] print_req_error: I/O error, dev loop1, sector 9494400 -[3449636.264702] print_req_error: I/O error, dev loop1, sector 9494616 -[3449636.264779] print_req_error: I/O error, dev loop1, sector 5300224 -[3449636.264912] print_req_error: I/O error, dev loop1, sector 5300232 -[3449636.313883] print_req_error: I/O error, dev loop1, sector 85888 -[3449636.314044] print_req_error: I/O error, dev loop1, sector 86000 -[3449636.314136] print_req_error: I/O error, dev loop1, sector 20480 -[3449636.314284] print_req_error: I/O error, dev loop1, sector 20488 -[3449636.324257] print_req_error: I/O error, dev loop1, sector 5300096 -[3449636.324418] print_req_error: I/O error, dev loop1, sector 5300208 -[3449696.828170] print_req_error: 54 callbacks suppressed -[3449696.828172] print_req_error: I/O error, dev loop1, sector 9494400 -[3449696.828299] print_req_error: I/O error, dev loop1, sector 9494616 -[3449696.828362] print_req_error: I/O error, dev loop1, sector 5300224 -[3449696.828486] print_req_error: I/O error, dev loop1, sector 5300232 -[3449696.851511] print_req_error: I/O error, dev loop1, sector 85888 -[3449696.851634] print_req_error: I/O error, dev loop1, sector 86000 -[3449696.851809] print_req_error: I/O error, dev loop1, sector 20480 -[3449696.851943] print_req_error: I/O error, dev loop1, sector 20488 -[3449696.856902] print_req_error: I/O error, dev loop1, sector 5300096 -[3449696.857046] print_req_error: I/O error, dev loop1, sector 5300208 -[3471234.099525] print_req_error: 54 callbacks suppressed -[3471234.099526] print_req_error: I/O error, dev loop1, sector 9494400 -[3471234.099700] print_req_error: I/O error, dev loop1, sector 9494616 -[3471234.099763] print_req_error: I/O error, dev loop1, sector 5300224 -[3471234.099793] print_req_error: I/O error, dev loop1, sector 5300232 -[3471234.146698] print_req_error: I/O error, dev loop1, sector 85888 -[3471234.146887] print_req_error: I/O error, dev loop1, sector 86000 -[3471234.146984] print_req_error: I/O error, dev loop1, sector 20480 -[3471234.147138] print_req_error: I/O error, dev loop1, sector 20488 -[3471234.157523] print_req_error: I/O error, dev loop1, sector 5300096 -[3471234.157703] print_req_error: I/O error, dev loop1, sector 5300208 -[3471290.557099] print_req_error: 54 callbacks suppressed -[3471290.557101] print_req_error: I/O error, dev loop1, sector 9494400 -[3471290.557213] print_req_error: I/O error, dev loop1, sector 9494616 -[3471290.557273] print_req_error: I/O error, dev loop1, sector 5300224 -[3471290.557374] print_req_error: I/O error, dev loop1, sector 5300232 -[3471290.629285] print_req_error: I/O error, dev loop1, sector 85888 -[3471290.629452] print_req_error: I/O error, dev loop1, sector 86000 -[3471290.629535] print_req_error: I/O error, dev loop1, sector 20480 -[3471290.629694] print_req_error: I/O error, dev loop1, sector 20488 -[3471290.634437] print_req_error: I/O error, dev loop1, sector 5300096 -[3471290.634595] print_req_error: I/O error, dev loop1, sector 5300208 -[3492832.593738] print_req_error: 54 callbacks suppressed -[3492832.593739] print_req_error: I/O error, dev loop1, sector 9494400 -[3492832.593940] print_req_error: I/O error, dev loop1, sector 9494616 -[3492832.594005] print_req_error: I/O error, dev loop1, sector 5300224 -[3492832.594106] print_req_error: I/O error, dev loop1, sector 5300232 -[3492832.663214] print_req_error: I/O error, dev loop1, sector 85888 -[3492832.663368] print_req_error: I/O error, dev loop1, sector 86000 -[3492832.663502] print_req_error: I/O error, dev loop1, sector 20480 -[3492832.663662] print_req_error: I/O error, dev loop1, sector 20488 -[3492832.673451] print_req_error: I/O error, dev loop1, sector 5300096 -[3492832.673599] print_req_error: I/O error, dev loop1, sector 5300208 -[3492892.414411] print_req_error: 54 callbacks suppressed -[3492892.414412] print_req_error: I/O error, dev loop1, sector 9494400 -[3492892.414482] print_req_error: I/O error, dev loop1, sector 9494616 -[3492892.414515] print_req_error: I/O error, dev loop1, sector 5300224 -[3492892.414556] print_req_error: I/O error, dev loop1, sector 5300232 -[3492892.484869] print_req_error: I/O error, dev loop1, sector 85888 -[3492892.485048] print_req_error: I/O error, dev loop1, sector 86000 -[3492892.485121] print_req_error: I/O error, dev loop1, sector 20480 -[3492892.485183] print_req_error: I/O error, dev loop1, sector 20488 -[3492892.495398] print_req_error: I/O error, dev loop1, sector 5300096 -[3492892.495543] print_req_error: I/O error, dev loop1, sector 5300208 -[3513970.222026] linhelmk unloading -[3513970.372701] linhelmk exit done -[3514270.531959] linhelmk loaded -[3514270.531960] This linhelmk was built with the IMA EXPERIMENT! -[3514270.558456] helm_ima_bridge_init() succeeded - IMA experiment running. -[3514270.559585] message queue initialized in 1024 pages of shared memory -[3514270.559797] cdev created: /dev/helm -[3514270.594885] probe is now in state 1 (was 0) -[3514270.600443] probe <__x64_sys_execve> is now in state 1 (was 0) -[3514270.605802] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3514270.611368] probe is now in state 1 (was 0) -[3514270.616777] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3514270.622401] probe is now in state 1 (was 0) -[3514270.628037] probe is now in state 1 (was 0) -[3514270.633676] probe is now in state 1 (was 0) -[3514270.639159] probe is now in state 1 (was 0) -[3514270.644901] probe is now in state 1 (was 0) -[3514270.644903] nf_hook 12 is now in state 1 (was 0) -[3514270.644904] nf_hook 13 is now in state 1 (was 0) -[3514270.644905] nf_hook 14 is now in state 1 (was 0) -[3514270.644906] nf_hook 15 is now in state 1 (was 0) -[3514270.644906] /dev/helm created; linhelm init done -[3514436.029562] print_req_error: 54 callbacks suppressed -[3514436.029563] print_req_error: I/O error, dev loop1, sector 9494400 -[3514436.029758] print_req_error: I/O error, dev loop1, sector 9494616 -[3514436.029821] print_req_error: I/O error, dev loop1, sector 5300224 -[3514436.029922] print_req_error: I/O error, dev loop1, sector 5300232 -[3514436.077270] print_req_error: I/O error, dev loop1, sector 85888 -[3514436.077416] print_req_error: I/O error, dev loop1, sector 86000 -[3514436.077506] print_req_error: I/O error, dev loop1, sector 20480 -[3514436.077650] print_req_error: I/O error, dev loop1, sector 20488 -[3514436.087779] print_req_error: I/O error, dev loop1, sector 5300096 -[3514436.087934] print_req_error: I/O error, dev loop1, sector 5300208 -[3514494.640068] print_req_error: 54 callbacks suppressed -[3514494.640069] print_req_error: I/O error, dev loop1, sector 9494400 -[3514494.640187] print_req_error: I/O error, dev loop1, sector 9494616 -[3514494.640249] print_req_error: I/O error, dev loop1, sector 5300224 -[3514494.640345] print_req_error: I/O error, dev loop1, sector 5300232 -[3514494.659407] print_req_error: I/O error, dev loop1, sector 85888 -[3514494.659525] print_req_error: I/O error, dev loop1, sector 86000 -[3514494.659658] print_req_error: I/O error, dev loop1, sector 20480 -[3514494.659787] print_req_error: I/O error, dev loop1, sector 20488 -[3514494.664686] print_req_error: I/O error, dev loop1, sector 5300096 -[3514494.664800] print_req_error: I/O error, dev loop1, sector 5300208 -[3536034.474176] print_req_error: 54 callbacks suppressed -[3536034.474178] print_req_error: I/O error, dev loop1, sector 9494400 -[3536034.474426] print_req_error: I/O error, dev loop1, sector 9494616 -[3536034.474484] print_req_error: I/O error, dev loop1, sector 5300224 -[3536034.474625] print_req_error: I/O error, dev loop1, sector 5300232 -[3536034.512857] print_req_error: I/O error, dev loop1, sector 85888 -[3536034.513017] print_req_error: I/O error, dev loop1, sector 86000 -[3536034.513105] print_req_error: I/O error, dev loop1, sector 20480 -[3536034.513250] print_req_error: I/O error, dev loop1, sector 20488 -[3536034.523547] print_req_error: I/O error, dev loop1, sector 5300096 -[3536034.523667] print_req_error: I/O error, dev loop1, sector 5300208 -[3536093.383893] print_req_error: 54 callbacks suppressed -[3536093.383894] print_req_error: I/O error, dev loop1, sector 9494400 -[3536093.384044] print_req_error: I/O error, dev loop1, sector 9494616 -[3536093.384108] print_req_error: I/O error, dev loop1, sector 5300224 -[3536093.384234] print_req_error: I/O error, dev loop1, sector 5300232 -[3536093.394824] print_req_error: I/O error, dev loop1, sector 85888 -[3536093.394896] print_req_error: I/O error, dev loop1, sector 86000 -[3536093.394929] print_req_error: I/O error, dev loop1, sector 20480 -[3536093.395050] print_req_error: I/O error, dev loop1, sector 20488 -[3536093.400440] print_req_error: I/O error, dev loop1, sector 5300096 -[3536093.400539] print_req_error: I/O error, dev loop1, sector 5300208 -[3557632.921211] print_req_error: 54 callbacks suppressed -[3557632.921213] print_req_error: I/O error, dev loop1, sector 9494400 -[3557632.921440] print_req_error: I/O error, dev loop1, sector 9494616 -[3557632.921503] print_req_error: I/O error, dev loop1, sector 5300224 -[3557632.921542] print_req_error: I/O error, dev loop1, sector 5300232 -[3557632.966902] print_req_error: I/O error, dev loop1, sector 85888 -[3557632.967029] print_req_error: I/O error, dev loop1, sector 86000 -[3557632.967207] print_req_error: I/O error, dev loop1, sector 20480 -[3557632.967365] print_req_error: I/O error, dev loop1, sector 20488 -[3557632.977118] print_req_error: I/O error, dev loop1, sector 5300096 -[3557632.977246] print_req_error: I/O error, dev loop1, sector 5300208 -[3557693.281736] print_req_error: 54 callbacks suppressed -[3557693.281738] print_req_error: I/O error, dev loop1, sector 9494400 -[3557693.281866] print_req_error: I/O error, dev loop1, sector 9494616 -[3557693.281943] print_req_error: I/O error, dev loop1, sector 5300224 -[3557693.282047] print_req_error: I/O error, dev loop1, sector 5300232 -[3557693.304203] print_req_error: I/O error, dev loop1, sector 85888 -[3557693.304339] print_req_error: I/O error, dev loop1, sector 86000 -[3557693.304624] print_req_error: I/O error, dev loop1, sector 20480 -[3557693.304748] print_req_error: I/O error, dev loop1, sector 20488 -[3557693.309956] print_req_error: I/O error, dev loop1, sector 5300096 -[3557693.310112] print_req_error: I/O error, dev loop1, sector 5300208 -[3579235.121495] print_req_error: 54 callbacks suppressed -[3579235.121497] print_req_error: I/O error, dev loop1, sector 9494400 -[3579235.121730] print_req_error: I/O error, dev loop1, sector 9494616 -[3579235.121795] print_req_error: I/O error, dev loop1, sector 5300224 -[3579235.121916] print_req_error: I/O error, dev loop1, sector 5300232 -[3579235.168119] print_req_error: I/O error, dev loop1, sector 85888 -[3579235.168270] print_req_error: I/O error, dev loop1, sector 86000 -[3579235.168401] print_req_error: I/O error, dev loop1, sector 20480 -[3579235.168513] print_req_error: I/O error, dev loop1, sector 20488 -[3579235.178392] print_req_error: I/O error, dev loop1, sector 5300096 -[3579235.178542] print_req_error: I/O error, dev loop1, sector 5300208 -[3579293.642549] print_req_error: 54 callbacks suppressed -[3579293.642550] print_req_error: I/O error, dev loop1, sector 9494400 -[3579293.642639] print_req_error: I/O error, dev loop1, sector 9494616 -[3579293.642708] print_req_error: I/O error, dev loop1, sector 5300224 -[3579293.642807] print_req_error: I/O error, dev loop1, sector 5300232 -[3579293.689796] print_req_error: I/O error, dev loop1, sector 85888 -[3579293.689905] print_req_error: I/O error, dev loop1, sector 86000 -[3579293.690027] print_req_error: I/O error, dev loop1, sector 20480 -[3579293.690114] print_req_error: I/O error, dev loop1, sector 20488 -[3579293.733610] print_req_error: I/O error, dev loop1, sector 5300096 -[3579293.733762] print_req_error: I/O error, dev loop1, sector 5300208 -[3600832.981532] print_req_error: 54 callbacks suppressed -[3600832.981534] print_req_error: I/O error, dev loop1, sector 9494400 -[3600832.981787] print_req_error: I/O error, dev loop1, sector 9494616 -[3600832.981859] print_req_error: I/O error, dev loop1, sector 5300224 -[3600832.981966] print_req_error: I/O error, dev loop1, sector 5300232 -[3600833.083414] print_req_error: I/O error, dev loop1, sector 85888 -[3600833.083566] print_req_error: I/O error, dev loop1, sector 86000 -[3600833.083714] print_req_error: I/O error, dev loop1, sector 20480 -[3600833.083815] print_req_error: I/O error, dev loop1, sector 20488 -[3600833.128503] print_req_error: I/O error, dev loop1, sector 5300096 -[3600833.128654] print_req_error: I/O error, dev loop1, sector 5300208 -[3600891.505895] print_req_error: 54 callbacks suppressed -[3600891.505896] print_req_error: I/O error, dev loop1, sector 9494400 -[3600891.506029] print_req_error: I/O error, dev loop1, sector 9494616 -[3600891.506102] print_req_error: I/O error, dev loop1, sector 5300224 -[3600891.506204] print_req_error: I/O error, dev loop1, sector 5300232 -[3600891.507979] print_req_error: I/O error, dev loop1, sector 85888 -[3600891.508089] print_req_error: I/O error, dev loop1, sector 86000 -[3600891.508191] print_req_error: I/O error, dev loop1, sector 20480 -[3600891.508353] print_req_error: I/O error, dev loop1, sector 20488 -[3600891.529160] print_req_error: I/O error, dev loop1, sector 5300096 -[3600891.529301] print_req_error: I/O error, dev loop1, sector 5300208 -[3622433.355127] print_req_error: 54 callbacks suppressed -[3622433.355129] print_req_error: I/O error, dev loop1, sector 9494400 -[3622433.355353] print_req_error: I/O error, dev loop1, sector 9494616 -[3622433.355416] print_req_error: I/O error, dev loop1, sector 5300224 -[3622433.355511] print_req_error: I/O error, dev loop1, sector 5300232 -[3622433.402877] print_req_error: I/O error, dev loop1, sector 85888 -[3622433.403069] print_req_error: I/O error, dev loop1, sector 86000 -[3622433.403217] print_req_error: I/O error, dev loop1, sector 20480 -[3622433.403305] print_req_error: I/O error, dev loop1, sector 20488 -[3622433.446888] print_req_error: I/O error, dev loop1, sector 5300096 -[3622433.447077] print_req_error: I/O error, dev loop1, sector 5300208 -[3622490.137640] print_req_error: 54 callbacks suppressed -[3622490.137642] print_req_error: I/O error, dev loop1, sector 9494400 -[3622490.137730] print_req_error: I/O error, dev loop1, sector 9494616 -[3622490.137792] print_req_error: I/O error, dev loop1, sector 5300224 -[3622490.137893] print_req_error: I/O error, dev loop1, sector 5300232 -[3622490.191787] print_req_error: I/O error, dev loop1, sector 85888 -[3622490.191944] print_req_error: I/O error, dev loop1, sector 86000 -[3622490.192032] print_req_error: I/O error, dev loop1, sector 20480 -[3622490.192184] print_req_error: I/O error, dev loop1, sector 20488 -[3622490.202024] print_req_error: I/O error, dev loop1, sector 5300096 -[3622490.202178] print_req_error: I/O error, dev loop1, sector 5300208 -[3644033.091601] print_req_error: 54 callbacks suppressed -[3644033.091602] print_req_error: I/O error, dev loop1, sector 9494400 -[3644033.091848] print_req_error: I/O error, dev loop1, sector 9494616 -[3644033.091913] print_req_error: I/O error, dev loop1, sector 5300224 -[3644033.092042] print_req_error: I/O error, dev loop1, sector 5300232 -[3644033.131541] print_req_error: I/O error, dev loop1, sector 85888 -[3644033.131696] print_req_error: I/O error, dev loop1, sector 86000 -[3644033.131789] print_req_error: I/O error, dev loop1, sector 20480 -[3644033.131940] print_req_error: I/O error, dev loop1, sector 20488 -[3644033.141820] print_req_error: I/O error, dev loop1, sector 5300096 -[3644033.141974] print_req_error: I/O error, dev loop1, sector 5300208 -[3644091.041431] print_req_error: 54 callbacks suppressed -[3644091.041432] print_req_error: I/O error, dev loop1, sector 9494400 -[3644091.041593] print_req_error: I/O error, dev loop1, sector 9494616 -[3644091.041669] print_req_error: I/O error, dev loop1, sector 5300224 -[3644091.041778] print_req_error: I/O error, dev loop1, sector 5300232 -[3644091.068820] print_req_error: I/O error, dev loop1, sector 85888 -[3644091.068987] print_req_error: I/O error, dev loop1, sector 86000 -[3644091.069068] print_req_error: I/O error, dev loop1, sector 20480 -[3644091.069137] print_req_error: I/O error, dev loop1, sector 20488 -[3644091.074682] print_req_error: I/O error, dev loop1, sector 5300096 -[3644091.074825] print_req_error: I/O error, dev loop1, sector 5300208 -[3665632.897935] print_req_error: 54 callbacks suppressed -[3665632.897936] print_req_error: I/O error, dev loop1, sector 9494400 -[3665632.898163] print_req_error: I/O error, dev loop1, sector 9494616 -[3665632.898230] print_req_error: I/O error, dev loop1, sector 5300224 -[3665632.898339] print_req_error: I/O error, dev loop1, sector 5300232 -[3665632.950709] print_req_error: I/O error, dev loop1, sector 85888 -[3665632.950857] print_req_error: I/O error, dev loop1, sector 86000 -[3665632.951006] print_req_error: I/O error, dev loop1, sector 20480 -[3665632.951148] print_req_error: I/O error, dev loop1, sector 20488 -[3665632.961268] print_req_error: I/O error, dev loop1, sector 5300096 -[3665632.961426] print_req_error: I/O error, dev loop1, sector 5300208 -[3665690.294882] print_req_error: 54 callbacks suppressed -[3665690.294884] print_req_error: I/O error, dev loop1, sector 9494400 -[3665690.294991] print_req_error: I/O error, dev loop1, sector 9494616 -[3665690.295047] print_req_error: I/O error, dev loop1, sector 5300224 -[3665690.295173] print_req_error: I/O error, dev loop1, sector 5300232 -[3665690.540402] print_req_error: I/O error, dev loop1, sector 85888 -[3665690.540544] print_req_error: I/O error, dev loop1, sector 86000 -[3665690.540630] print_req_error: I/O error, dev loop1, sector 20480 -[3665690.540771] print_req_error: I/O error, dev loop1, sector 20488 -[3665690.838535] print_req_error: I/O error, dev loop1, sector 5300096 -[3665690.838680] print_req_error: I/O error, dev loop1, sector 5300208 -[3687234.093014] print_req_error: 54 callbacks suppressed -[3687234.093016] print_req_error: I/O error, dev loop1, sector 9494400 -[3687234.093226] print_req_error: I/O error, dev loop1, sector 9494616 -[3687234.093295] print_req_error: I/O error, dev loop1, sector 5300224 -[3687234.093422] print_req_error: I/O error, dev loop1, sector 5300232 -[3687234.132722] print_req_error: I/O error, dev loop1, sector 85888 -[3687234.132891] print_req_error: I/O error, dev loop1, sector 86000 -[3687234.132986] print_req_error: I/O error, dev loop1, sector 20480 -[3687234.133143] print_req_error: I/O error, dev loop1, sector 20488 -[3687234.143013] print_req_error: I/O error, dev loop1, sector 5300096 -[3687234.143181] print_req_error: I/O error, dev loop1, sector 5300208 -[3687295.446239] print_req_error: 54 callbacks suppressed -[3687295.446240] print_req_error: I/O error, dev loop1, sector 9494400 -[3687295.446396] print_req_error: I/O error, dev loop1, sector 9494616 -[3687295.446460] print_req_error: I/O error, dev loop1, sector 5300224 -[3687295.446586] print_req_error: I/O error, dev loop1, sector 5300232 -[3687295.487592] print_req_error: I/O error, dev loop1, sector 85888 -[3687295.487751] print_req_error: I/O error, dev loop1, sector 86000 -[3687295.487839] print_req_error: I/O error, dev loop1, sector 20480 -[3687295.487989] print_req_error: I/O error, dev loop1, sector 20488 -[3687295.531375] print_req_error: I/O error, dev loop1, sector 5300096 -[3687295.531525] print_req_error: I/O error, dev loop1, sector 5300208 -[3708827.921260] print_req_error: 54 callbacks suppressed -[3708827.921262] print_req_error: I/O error, dev loop1, sector 9494400 -[3708827.921465] print_req_error: I/O error, dev loop1, sector 9494616 -[3708827.921531] print_req_error: I/O error, dev loop1, sector 5300224 -[3708827.921660] print_req_error: I/O error, dev loop1, sector 5300232 -[3708828.282852] print_req_error: I/O error, dev loop1, sector 85888 -[3708828.283014] print_req_error: I/O error, dev loop1, sector 86000 -[3708828.283095] print_req_error: I/O error, dev loop1, sector 20480 -[3708828.283239] print_req_error: I/O error, dev loop1, sector 20488 -[3708828.326843] print_req_error: I/O error, dev loop1, sector 5300096 -[3708828.327000] print_req_error: I/O error, dev loop1, sector 5300208 -[3708886.186873] print_req_error: 54 callbacks suppressed -[3708886.186874] print_req_error: I/O error, dev loop1, sector 9494400 -[3708886.186989] print_req_error: I/O error, dev loop1, sector 9494616 -[3708886.187052] print_req_error: I/O error, dev loop1, sector 5300224 -[3708886.187176] print_req_error: I/O error, dev loop1, sector 5300232 -[3708886.211531] print_req_error: I/O error, dev loop1, sector 85888 -[3708886.211665] print_req_error: I/O error, dev loop1, sector 86000 -[3708886.211802] print_req_error: I/O error, dev loop1, sector 20480 -[3708886.211880] print_req_error: I/O error, dev loop1, sector 20488 -[3708886.247357] print_req_error: I/O error, dev loop1, sector 5300096 -[3708886.247504] print_req_error: I/O error, dev loop1, sector 5300208 -[3730428.594615] print_req_error: 54 callbacks suppressed -[3730428.594617] print_req_error: I/O error, dev loop1, sector 9494400 -[3730428.594808] print_req_error: I/O error, dev loop1, sector 9494616 -[3730428.594870] print_req_error: I/O error, dev loop1, sector 5300224 -[3730428.594900] print_req_error: I/O error, dev loop1, sector 5300232 -[3730428.633135] print_req_error: I/O error, dev loop1, sector 85888 -[3730428.633230] print_req_error: I/O error, dev loop1, sector 86000 -[3730428.633302] print_req_error: I/O error, dev loop1, sector 20480 -[3730428.633445] print_req_error: I/O error, dev loop1, sector 20488 -[3730428.643601] print_req_error: I/O error, dev loop1, sector 5300096 -[3730428.643752] print_req_error: I/O error, dev loop1, sector 5300208 -[3730487.381141] print_req_error: 54 callbacks suppressed -[3730487.381143] print_req_error: I/O error, dev loop1, sector 9494400 -[3730487.381268] print_req_error: I/O error, dev loop1, sector 9494616 -[3730487.381335] print_req_error: I/O error, dev loop1, sector 5300224 -[3730487.381433] print_req_error: I/O error, dev loop1, sector 5300232 -[3730487.392995] print_req_error: I/O error, dev loop1, sector 85888 -[3730487.393112] print_req_error: I/O error, dev loop1, sector 86000 -[3730487.393185] print_req_error: I/O error, dev loop1, sector 20480 -[3730487.393320] print_req_error: I/O error, dev loop1, sector 20488 -[3730487.398683] print_req_error: I/O error, dev loop1, sector 5300096 -[3730487.398821] print_req_error: I/O error, dev loop1, sector 5300208 -[3752030.490479] print_req_error: 54 callbacks suppressed -[3752030.490481] print_req_error: I/O error, dev loop1, sector 9494400 -[3752030.490701] print_req_error: I/O error, dev loop1, sector 9494616 -[3752030.490762] print_req_error: I/O error, dev loop1, sector 5300224 -[3752030.490866] print_req_error: I/O error, dev loop1, sector 5300232 -[3752030.551580] print_req_error: I/O error, dev loop1, sector 85888 -[3752030.551699] print_req_error: I/O error, dev loop1, sector 86000 -[3752030.551855] print_req_error: I/O error, dev loop1, sector 20480 -[3752030.551969] print_req_error: I/O error, dev loop1, sector 20488 -[3752030.562144] print_req_error: I/O error, dev loop1, sector 5300096 -[3752030.562314] print_req_error: I/O error, dev loop1, sector 5300208 -[3752087.874041] print_req_error: 54 callbacks suppressed -[3752087.874042] print_req_error: I/O error, dev loop1, sector 9494400 -[3752087.874153] print_req_error: I/O error, dev loop1, sector 9494616 -[3752087.874211] print_req_error: I/O error, dev loop1, sector 5300224 -[3752087.874273] print_req_error: I/O error, dev loop1, sector 5300232 -[3752087.917649] print_req_error: I/O error, dev loop1, sector 85888 -[3752087.917797] print_req_error: I/O error, dev loop1, sector 86000 -[3752087.917912] print_req_error: I/O error, dev loop1, sector 20480 -[3752087.918070] print_req_error: I/O error, dev loop1, sector 20488 -[3752087.928001] print_req_error: I/O error, dev loop1, sector 5300096 -[3752087.928138] print_req_error: I/O error, dev loop1, sector 5300208 -[3773631.568600] print_req_error: 54 callbacks suppressed -[3773631.568601] print_req_error: I/O error, dev loop1, sector 9494400 -[3773631.568855] print_req_error: I/O error, dev loop1, sector 9494616 -[3773631.569006] print_req_error: I/O error, dev loop1, sector 5300224 -[3773631.569137] print_req_error: I/O error, dev loop1, sector 5300232 -[3773631.615282] print_req_error: I/O error, dev loop1, sector 85888 -[3773631.615436] print_req_error: I/O error, dev loop1, sector 86000 -[3773631.615520] print_req_error: I/O error, dev loop1, sector 20480 -[3773631.615661] print_req_error: I/O error, dev loop1, sector 20488 -[3773631.625742] print_req_error: I/O error, dev loop1, sector 5300096 -[3773631.625895] print_req_error: I/O error, dev loop1, sector 5300208 -[3773688.292887] print_req_error: 54 callbacks suppressed -[3773688.292889] print_req_error: I/O error, dev loop1, sector 9494400 -[3773688.292993] print_req_error: I/O error, dev loop1, sector 9494616 -[3773688.293106] print_req_error: I/O error, dev loop1, sector 5300224 -[3773688.293215] print_req_error: I/O error, dev loop1, sector 5300232 -[3773688.308292] print_req_error: I/O error, dev loop1, sector 85888 -[3773688.308421] print_req_error: I/O error, dev loop1, sector 86000 -[3773688.308468] print_req_error: I/O error, dev loop1, sector 20480 -[3773688.308615] print_req_error: I/O error, dev loop1, sector 20488 -[3773688.313880] print_req_error: I/O error, dev loop1, sector 5300096 -[3773688.314006] print_req_error: I/O error, dev loop1, sector 5300208 -[3785021.622611] usb 4-1.1: USB disconnect, device number 16 -[3785021.622617] usb 4-1.1.4: USB disconnect, device number 17 -[3785021.623398] usb 4-1.1.5: USB disconnect, device number 18 -[3785125.274899] usb 4-1.1: new high-speed USB device number 30 using ehci-pci -[3785125.383360] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785125.383366] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785125.383988] hub 4-1.1:1.0: USB hub found -[3785125.384144] hub 4-1.1:1.0: 7 ports detected -[3785125.670859] usb 4-1.1.4: new high-speed USB device number 31 using ehci-pci -[3785125.784391] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785125.784397] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.784400] usb 4-1.1.4: Product: servo:810-10010-02 -[3785125.784403] usb 4-1.1.4: Manufacturer: Google Inc -[3785125.784406] usb 4-1.1.4: SerialNumber: 641220-00008 -[3785125.870812] usb 4-1.1.5: new high-speed USB device number 32 using ehci-pci -[3785125.992537] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785125.992543] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.992546] usb 4-1.1.5: Product: servo:810-10010-02 -[3785125.992549] usb 4-1.1.5: Manufacturer: Google Inc -[3785125.992552] usb 4-1.1.5: SerialNumber: 641220-00008 -[3785170.870778] usb 4-1.1: USB disconnect, device number 30 -[3785170.870784] usb 4-1.1.4: USB disconnect, device number 31 -[3785170.871509] usb 4-1.1.5: USB disconnect, device number 32 -[3785399.444401] usb 4-1.1: new high-speed USB device number 33 using ehci-pci -[3785399.552969] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785399.552975] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785399.553492] hub 4-1.1:1.0: USB hub found -[3785399.553713] hub 4-1.1:1.0: 7 ports detected -[3785399.844386] usb 4-1.1.4: new high-speed USB device number 34 using ehci-pci -[3785399.961854] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785399.961859] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785399.961863] usb 4-1.1.4: Product: servo:810-10010-02 -[3785399.961866] usb 4-1.1.4: Manufacturer: Google Inc -[3785399.961869] usb 4-1.1.4: SerialNumber: 686203-00054 -[3785400.052405] usb 4-1.1.5: new high-speed USB device number 35 using ehci-pci -[3785400.169888] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785400.169894] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785400.169897] usb 4-1.1.5: Product: servo:810-10010-02 -[3785400.169900] usb 4-1.1.5: Manufacturer: Google Inc -[3785400.169903] usb 4-1.1.5: SerialNumber: 686203-00054 -[3789440.536209] usb 2-2.3: USB disconnect, device number 6 -[3789487.590458] usb 2-2.3: new low-speed USB device number 7 using xhci_hcd -[3789487.699433] usb 2-2.3: New USB device found, idVendor=1a7c, idProduct=0195, bcdDevice= 3.10 -[3789487.699439] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3789487.699442] usb 2-2.3: Product: Evoluent VerticalMouse C -[3789487.699445] usb 2-2.3: Manufacturer: SONiX -[3789487.715234] input: SONiX Evoluent VerticalMouse C as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:1A7C:0195.0006/input/input18 -[3789487.715781] hid-generic 0003:1A7C:0195.0006: input,hidraw3: USB HID v1.00 Mouse [SONiX Evoluent VerticalMouse C] on usb-0000:08:00.0-2.3/input0 -[3795231.326042] print_req_error: 54 callbacks suppressed -[3795231.326044] print_req_error: I/O error, dev loop1, sector 9494400 -[3795231.326309] print_req_error: I/O error, dev loop1, sector 9494616 -[3795231.326377] print_req_error: I/O error, dev loop1, sector 5300224 -[3795231.326484] print_req_error: I/O error, dev loop1, sector 5300232 -[3795231.390354] print_req_error: I/O error, dev loop1, sector 85888 -[3795231.390514] print_req_error: I/O error, dev loop1, sector 86000 -[3795231.390611] print_req_error: I/O error, dev loop1, sector 20480 -[3795231.390755] print_req_error: I/O error, dev loop1, sector 20488 -[3795231.400824] print_req_error: I/O error, dev loop1, sector 5300096 -[3795231.400980] print_req_error: I/O error, dev loop1, sector 5300208 -[3795290.731079] print_req_error: 54 callbacks suppressed -[3795290.731081] print_req_error: I/O error, dev loop1, sector 9494400 -[3795290.731158] print_req_error: I/O error, dev loop1, sector 9494616 -[3795290.731226] print_req_error: I/O error, dev loop1, sector 5300224 -[3795290.731253] print_req_error: I/O error, dev loop1, sector 5300232 -[3795290.767720] print_req_error: I/O error, dev loop1, sector 85888 -[3795290.767890] print_req_error: I/O error, dev loop1, sector 86000 -[3795290.767997] print_req_error: I/O error, dev loop1, sector 20480 -[3795290.768132] print_req_error: I/O error, dev loop1, sector 20488 -[3795290.811384] print_req_error: I/O error, dev loop1, sector 5300096 -[3795290.811520] print_req_error: I/O error, dev loop1, sector 5300208 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mount -[?2004lsysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) -proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) -udev on /dev type devtmpfs (rw,nosuid,relatime,size=32916052k,nr_inodes=8229013,mode=755) -devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000) -tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=6595740k,mode=755) -securityfs on /sys/kernel/security type securityfs (rw,relatime) -/dev/mapper/dhcp--100--123--187--143--vg-root on / type ext4 (rw,relatime,errors=remount-ro,i_version) -tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev) -tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k) -tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755) -cgroup2 on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate) -cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd) -pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime) -bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700) -cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids) -cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct) -cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer) -cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio) -cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event) -cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset) -cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory) -cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio) -cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices) -systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1187) -mqueue on /dev/mqueue type mqueue (rw,relatime) -debugfs on /sys/kernel/debug type debugfs (rw,relatime) -sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime) -hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M) -/dev/sdb1 on /usr/local/src type ext4 (rw,relatime,data=ordered) -/dev/sda3 on /boot type ext2 (rw,relatime,block_validity,barrier,user_xattr,acl,i_version,stripe=4) -/dev/sdc1 on /usr/local/google type ext4 (rw,relatime,data=writeback) -/dev/sda2 on /boot/efi type vfat (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro) -binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime) -fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime) -/etc/auto.auto on /auto type autofs (rw,relatime,fd=7,pgrp=2509,timeout=300,minproto=5,maxproto=5,indirect,pipe_ino=41400) -/etc/auto.home on /home type autofs (rw,relatime,fd=13,pgrp=2509,timeout=300,minproto=5,maxproto=5,indirect,pipe_ino=48654) -tmpfs on /run/user/114 type tmpfs (rw,nosuid,nodev,relatime,size=6595736k,mode=700,uid=114,gid=120) -tmpfs on /run/user/156049 type tmpfs (rw,nosuid,nodev,relatime,size=6595736k,mode=700,uid=156049,gid=89939) -gvfsd-fuse on /run/user/156049/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=156049,group_id=89939) -cros on /sys/fs/cgroup/cpuset/cros type cgroup (rw,relatime,cpuset) -/dev/mapper/cros_usr+local+src+chromiumos+chroot_000-chroot on /usr/local/src/chromiumos/chroot type ext4 (rw,noatime,stripe=64) -srcfsd on /google/src type fuse.srcfsd (rw,nosuid,nodev,relatime,user_id=125,group_id=65534,default_permissions,allow_other) -binfs on /google/bin type fuse.binfs (rw,nosuid,nodev,relatime,user_id=156049,group_id=89939) -objfsd on /google/obj type fuse.objfsd (rw,nosuid,nodev,relatime,user_id=126,group_id=65534,default_permissions,allow_other) -x20fsd on /google/data type fuse.x20fsd (rw,nosuid,nodev,relatime,user_id=124,group_id=65534,allow_other) -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ l2019/01/03 13:07:15 Accepted &{{0xc00013e180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:09:21 Accepted &{{0xc00013e280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2019/01/03 13:09:21 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1 -2019/01/03 13:09:21 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 13:09:21 removed [0xc007b78500] -+ echo TEST /tmp/futk077126222/2 -TEST /tmp/futk077126222/2 -+ echo date -./DXECLEANER: line 5: /dev/ttyUSB1: Permission denied -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK -[?2004l -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mountdmesgbgmake d98./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -./DXECLEANER: line 5: /dev/ttyUSB1: Permission denied -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d rom211.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:11:31 Listening on 192.168.0.1:8080 at 2019-01-03 13:11:31.600020092 -0800 PST m=+0.005290149 -2019/01/03 13:14:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2019-01-03 13:14:31.600473929 -0800 PST m=+180.005743803 -2019/01/03 13:14:31 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:14:31 We are now done ...................... -2019/01/03 13:14:31 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fls -[?2004l98.splat config-4.13.0-rc7 fail.bin L NOTES rom211.rom uinit -bin.reset DIT futk.remove.99 linux removeBMCcrap.bin RUN3 x.bin -blacklist dxeclean.bin id_rsa.pub LIST removemorecrap.bin RUN4 xxx -commentmorecrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LOG removesetupcrap.bin RUN4.4.rom yyy -commentsetupcrap.bin EATIT ipmisucks.bin Makefile removesomecrap.bin tyan7102.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk 98.splat fv -[?2004l2019/01/03 13:15:36 Found 313 things -[313]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ furtk RUN4RUN4.4.rom fv - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:44:24 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2019-01-03 13:44:24.684082266 -0800 PST m=+320.401630498 -2019/01/03 13:44:24 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:44:24 We are now done ...................... -2019/01/03 13:44:24 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:44:24 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 13:44:24 removed [0xc00fff1500] -+ echo TEST /tmp/futk219719675/2 -TEST /tmp/futk219719675/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk219719675/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301 -2019/01/03 13:48:07 Accepted &{{0xc000142100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:50:13 Accepted &{{0xc000142200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2019/01/03 13:50:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaner R:saverom]}: file is /tmp/futk219719675/2 -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 13:50:13 removed [0xc000026180] -^Cinterrupt -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -m ssh -[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821 - - -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk219719675/ -[?2004l0 1 2 3 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ /tmpfutk more RUN4 -[?2004l[more RUN4]OK ^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ morvi RUN4 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"RUN4" [noeol] 11690L, 581632C▽ [>c]10;?]11;?Script started on 2018-12-20 12:38:28-0800 -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ make d4^M -^[[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean^M -2018/12/20 12:38:32 Found 310 things^M -2018/12/20 12:38:32 script is ./DXECLEANER^M -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8)^M -2018/12/20 12:38:42 removed [0xc000025200]^M -+ echo TEST /tmp/futk925337781/1^M -TEST /tmp/futk925337781/1^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r^M -[sudo] password for rminnich: ^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707^M -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 We are now done ......................^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6)^^M -2018/12/20 12:44:44 removed [0xc0084f8b00]^M -+ echo TEST /tmp/futk925337781/2^M -TEST /tmp/futk925337781/2^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M1,1Top]2;RUN4 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;RUN4[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lSent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -m tester^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2019/01/03 13:50:13 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443))^M -2019/01/03 13:50:13 removed [0xc000026180]^M -^Cinterrupt^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ./uinit -m ssh^M -^[[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^M -^M -^M -^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ls /tmp/fu^Gtk219719675/^M -^[[?2004l0 1 2 3^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ /tmp^H^H^H^H^[[Kfutk more RUN4^G^M -^[[?2004l[more RUN4]OK ^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ m11690,1Bot[?25h[?25l?[?2004h[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h [?25l11668,21 Bot[?25h[?25l90,1 [?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l[]5[?25h[?25l[] -[]4[?25h[?25l[] -[]3[?25h[?25l[]2[?25h[?25l1[?25h[?25l0[?25h[?25l69[?25h[?25l8[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h/[?25l[?25hp[?25l[?25h [?25l -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/2^M -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/5^M -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:clean -er R:saverom]}: file is /tmp/futk925337781/7^M -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/8^M -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9^M -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/10^M -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/11^M -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12^M -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/13^M -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/14^M -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16^M -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/19^M -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/20^M -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 m -ap[R:saverom r:cleaner]}: file is /tmp/futk925337781/21^M -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleane -rR:saverom]}: file is /tmp/futk925337781/23^M -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -HandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/25^M -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/26^M -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/27^M -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28^M -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/30^M -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/31^M -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/32^M -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor -Dxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/34^M -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/36^M -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41^M -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/43^M -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/44^M -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/45^M -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo -licy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/48^M -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r: -cleaner R:saverom]}: file is /tmp/futk925337781/50^M -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51^M --- More --[?25h[?25l2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/54^M -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:s -averom r:cleaner]}: file is /tmp/futk925337781/55^M -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/57^M -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/58^M -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma -p[R:saverom r:cleaner]}: file is /tmp/futk925337781/59^M -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/61^M -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/62^M -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[ -R:saverom r:cleaner]}: file is /tmp/futk925337781/64^M -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/66^M -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/68^M -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/69^M -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/70^M -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/72^M -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/73^M -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/74^M -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/75^M -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/76^M -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali -ze 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/79^M -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE -ntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/84^M -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86^M -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88^M -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/89^M -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90^M -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92^M -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R: -saverom r:cleaner]}: file is /tmp/futk925337781/93^M -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94^M -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/98^M -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99^M -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi -ghtningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL -ightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:sav -e-- More --[?25hrom r:cleaner]}: file is /tmp/futk925337781/103^M -[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/104^M -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105^M -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/108^M -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112^M -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/114^M -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe -tupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/117^M -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/119^M -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120^M -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/121^M -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122^M -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/124^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav -erom r:cleaner]}: file is /tmp/futk925337781/126^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk219719675/2^M -Press ENTER or type command to continue[?25h[?25lSent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -m tester^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2019/01/03 13:50:13 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443))^M -2019/01/03 13:50:13 removed [0xc000026180]^M -^Cinterrupt^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ./uinit -m ssh^M -^[[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^M -^M -^M -^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ls /tmp/fu^Gtk219719675/^M -^[[?2004l0 1 2 3^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ /tmp^H^H^H^H^[[Kfutk more RUN4^G^M -^[[?2004l[more RUN4]OK ^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ m11668,1Bot[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l90,1 [?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l[]5[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -There are stopped jobs. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lmake d98 -^Cinterrupt -^C^C^C -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK ^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ u -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -There are stopped jobs. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lmake d98 -^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ kill -09 9 %1 -[?2004l -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[1]+ Killed make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit - -Script done on 2019-01-03 13:52:38-0800 diff --git a/mainboards/tyan7106/bin.reset b/mainboards/tyan7106/bin.reset deleted file mode 100644 index 20e99d46..00000000 --- a/mainboards/tyan7106/bin.reset +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -# this is the reset script for the BMC so we don't have to deal with awful -# curl scripts. -sleep 1 -echo 0 > /sys/class/gpio/gpio315/value -sleep 1 -echo 1 > /sys/class/gpio/gpio315/value -sleep 5 -echo 0 > /sys/class/gpio/gpio315/value diff --git a/mainboards/tyan7106/blacklist b/mainboards/tyan7106/blacklist deleted file mode 100644 index a3e570d5..00000000 --- a/mainboards/tyan7106/blacklist +++ /dev/null @@ -1,48 +0,0 @@ -3FFCAE95-23CF-4967-94F5-16352F68E43B -13F4EA8E-BFF1-43BF-8F44-80BCC96040F1 -274F0C8F-9E57-41D8-9966-29CCD48D31C2 -C1C418F9-591D-461C-82A2-B9CD96DFEA86 -DE23ACEE-CF55-4FB6-AA77-984AB53DE823 -FC1B7640-3466-4C06-B1CC-1C935394B5C2 -90CB75DB-71FC-489D-AACF-943477EC7212 -WdtDxe -HeciInitDxe -SpsDxe -Aint13 -Setup -ServerMgmtSetup -.*ACPI.* -S3SaveStateDxe -BootScriptExecutorDxe -SioDxeInit -LegacySredir -OA3 -OptionRomPolicy -PciRootBridge -PciDxeInit -PciOutOfResourceSetupPage -RuntimeMemoryHoleVar -ExportHiiDb -DpcDxe -AmiBoardInfo2 -ReFlash -CsmDxe -UbaConfigDatabaseDxe -HardwareSignatureEntry -KbcEmulDxe -EsrtDxe -NvmeInt13 -OpalSecurity -.*Acpi.* -PlatformCpuPolicy -LegacyRegion2 -PciPlatform -PlatformEarlyDxe -PlatformType -S3NvramSave -UuidDxe -OpaPlatCfg -MemorySubClass -SocketSetup -FpgaSocketSetup - diff --git a/mainboards/tyan7106/chipsec-4.13.0-rc7.ko b/mainboards/tyan7106/chipsec-4.13.0-rc7.ko deleted file mode 100644 index 7c15463f..00000000 Binary files a/mainboards/tyan7106/chipsec-4.13.0-rc7.ko and /dev/null differ diff --git a/mainboards/tyan7106/chipsec_out b/mainboards/tyan7106/chipsec_out deleted file mode 100644 index a67b69d0..00000000 --- a/mainboards/tyan7106/chipsec_out +++ /dev/null @@ -1,190 +0,0 @@ -2019/01/10 22:38:05 os.Args is [uname -p 2> /dev/null]: you need to specify which command to invoke. -[*] Ignoring unsupported platform warning and continue execution -################################################################ -## ## -## CHIPSEC: Platform Hardware Security Assessment Framework ## -## ## -################################################################ -[CHIPSEC] Version 1.3.5.dev1 -[CHIPSEC] Arguments: -i -[CHIPSEC] API mode: using OS native API (not using CHIPSEC kernel module) -ERROR: Unsupported Platform: VID = 0x8086, DID = 0x2020 -ERROR: Platform is not supported (Unsupported Platform: VID = 0x8086, DID = 0x2020). -WARNING: Platform dependent functionality is likely to be incorrect -[CHIPSEC] OS : Linux 4.13.0-rc7-onie+ #125 SMP Thu Jan 10 15:35:51 PST 2019 x86_64 -[CHIPSEC] Platform: UnknownPlatform -[CHIPSEC] VID: 8086 -[CHIPSEC] DID: 2020 - -[*] loading common modules from ".home.rminnich.projects.NERF.chipsec.chipsec.modules.common" .. -[+] loaded chipsec.modules.common.spi_lock -[+] loaded chipsec.modules.common.spi_fdopss -[+] loaded chipsec.modules.common.spi_desc -[+] loaded chipsec.modules.common.spi_access -[+] loaded chipsec.modules.common.smrr -[+] loaded chipsec.modules.common.smm -[+] loaded chipsec.modules.common.rtclock -[+] loaded chipsec.modules.common.ia32cfg -[+] loaded chipsec.modules.common.bios_wp -[+] loaded chipsec.modules.common.bios_ts -[+] loaded chipsec.modules.common.bios_smi -[+] loaded chipsec.modules.common.bios_kbrd_buffer -[+] loaded chipsec.modules.common.uefi.s3bootscript -[+] loaded chipsec.modules.common.uefi.access_uefispec -[+] loaded chipsec.modules.common.secureboot.variables -[*] No platform specific modules to load -[*] loading modules from ".home.rminnich.projects.NERF.chipsec.chipsec.modules" .. -[+] loaded chipsec.modules.smm_dma -[+] loaded chipsec.modules.remap -[+] loaded chipsec.modules.memconfig -[*] running loaded modules .. - -[*] running module: chipsec.modules.common.spi_lock -[x][ ======================================================================= -[x][ Module: SPI Flash Controller Configuration Lock -[x][ ======================================================================= -ERROR: Exception occurred during chipsec.modules.common.spi_lock.run(): ''FlashLockDown'' - -[*] running module: chipsec.modules.common.spi_fdopss -[x][ ======================================================================= -[x][ Module: SPI Flash Descriptor Security Override Pin-Strap -[x][ ======================================================================= -ERROR: Couldn't find definition of required configuration registers (HSFS) - -[*] running module: chipsec.modules.common.spi_desc -[x][ ======================================================================= -[x][ Module: SPI Flash Region Access Control -[x][ ======================================================================= -ERROR: Exception occurred during chipsec.modules.common.spi_desc.run(): ''FRAP'' - -[*] running module: chipsec.modules.common.spi_access -ERROR: Exception occurred during chipsec.modules.common.spi_access.run(): ''HSFS'' - -[*] running module: chipsec.modules.common.smrr -[x][ ======================================================================= -[x][ Module: CPU SMM Cache Poisoning / System Management Range Registers -[x][ ======================================================================= -ERROR: Couldn't find definition of required configuration registers - -[*] running module: chipsec.modules.common.smm -[x][ ======================================================================= -[x][ Module: Compatible SMM memory (SMRAM) Protection -[x][ ======================================================================= -ERROR: Couldn't find definition of required registers (PCI0.0.0_SMRAMC) - -[*] running module: chipsec.modules.common.rtclock -Skipping module chipsec.modules.common.rtclock since it is not supported in this platform - -[*] running module: chipsec.modules.common.ia32cfg -[x][ ======================================================================= -[x][ Module: IA32 Feature Control Lock -[x][ ======================================================================= -[*] Verifying IA32_Feature_Control MSR is locked on all logical CPUs.. -ERROR: Exception occurred during chipsec.modules.common.ia32cfg.run(): ''Ia32FeatureControlLock'' - -[*] running module: chipsec.modules.common.bios_wp -ERROR: Exception occurred during chipsec.modules.common.bios_wp.run(): ''HSFS'' - -[*] running module: chipsec.modules.common.bios_ts -[x][ ======================================================================= -[x][ Module: BIOS Interface Lock (including Top Swap Mode) -[x][ ======================================================================= -ERROR: BiosInterfaceLockDown (BILD) control is not defined - -[*] running module: chipsec.modules.common.bios_smi -[x][ ======================================================================= -[x][ Module: SMI Events Configuration -[x][ ======================================================================= -ERROR: Couldn't find definition of required configuration registers - -[*] running module: chipsec.modules.common.bios_kbrd_buffer -[x][ ======================================================================= -[x][ Module: Pre-boot Passwords in the BIOS Keyboard Buffer -[x][ ======================================================================= -[*] Keyboard buffer head pointer = 0x1E (at 0x41A), tail pointer = 0x1E (at 0x41C) -[*] Keyboard buffer contents (at 0x41E): -00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | -00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | -[*] Checking contents of the keyboard buffer.. - -[+] PASSED: Keyboard buffer looks empty. Pre-boot passwords don't seem to be exposed - -[*] running module: chipsec.modules.common.uefi.s3bootscript -[x][ ======================================================================= -[x][ Module: S3 Resume Boot-Script Protections -[x][ ======================================================================= -[+] Didn't find any S3 boot-scripts in EFI variables -[!] WARNING: S3 Boot-Script was not found. Firmware may be using other ways to store/locate it - -[*] running module: chipsec.modules.common.uefi.access_uefispec -[x][ ======================================================================= -[x][ Module: Access Control of EFI Variables -[x][ ======================================================================= -[*] Testing UEFI variables .. - -[-] Variables with attributes that differ from UEFI spec: - -[+] PASSED: All checked EFI variables are protected according to spec. - -[*] running module: chipsec.modules.common.secureboot.variables -[x][ ======================================================================= -[x][ Module: Attributes of Secure Boot EFI Variables -[x][ ======================================================================= -[!] Secure Boot variable SecureBoot is not found -[!] Secure Boot variable SetupMode is not found -[!] Secure Boot variable PK is not found -[!] Secure Boot variable KEK is not found -[!] Secure Boot variable db is not found -[!] Secure Boot variable dbx is not found - -[*] Secure Boot appears to be disabled -[*] SKIPPED: None of required Secure Boot variables found. Secure Boot is not enabled - -[*] running module: chipsec.modules.smm_dma -[x][ ======================================================================= -[x][ Module: SMM TSEG Range Configuration Check -[x][ ======================================================================= -ERROR: Exception occurred during chipsec.modules.smm_dma.run(): ''PCI0.0.0_TSEGMB'' - -[*] running module: chipsec.modules.remap -Skipping module chipsec.modules.remap since it is not supported in this platform - -[*] running module: chipsec.modules.memconfig -Skipping module chipsec.modules.memconfig since it is not supported in this platform - -[CHIPSEC] *************************** SUMMARY *************************** -[CHIPSEC] Time elapsed 0.014 -[CHIPSEC] Modules total 18 -[CHIPSEC] Modules failed to run 11: -ERROR: chipsec.modules.common.spi_lock -ERROR: chipsec.modules.common.spi_fdopss -ERROR: chipsec.modules.common.spi_desc -ERROR: chipsec.modules.common.spi_access -ERROR: chipsec.modules.common.smrr -ERROR: chipsec.modules.common.smm -ERROR: chipsec.modules.common.ia32cfg -ERROR: chipsec.modules.common.bios_wp -ERROR: chipsec.modules.common.bios_ts -ERROR: chipsec.modules.common.bios_smi -ERROR: chipsec.modules.smm_dma -[CHIPSEC] Modules passed 2: -[+] PASSED: chipsec.modules.common.bios_kbrd_buffer -[+] PASSED: chipsec.modules.common.uefi.access_uefispec -[CHIPSEC] Modules failed 0: -[CHIPSEC] Modules with warnings 1: -[!] WARNING: chipsec.modules.common.uefi.s3bootscript -[CHIPSEC] Modules skipped 4: -[*] SKIPPED: chipsec.modules.common.rtclock -[*] SKIPPED: chipsec.modules.common.secureboot.variables -[*] SKIPPED: chipsec.modules.remap -[*] SKIPPED: chipsec.modules.memconfig -[CHIPSEC] Modules with Exceptions 6: -ERROR: chipsec.modules.common.spi_lock -ERROR: chipsec.modules.common.spi_desc -ERROR: chipsec.modules.common.spi_access -ERROR: chipsec.modules.common.ia32cfg -ERROR: chipsec.modules.common.bios_wp -ERROR: chipsec.modules.smm_dma -[CHIPSEC] ***************************************************************** -Exception: python exited with 51 -, line 1: python /home/rminnich/projects/NERF/chipsec/chipsec_main.py -i diff --git a/mainboards/tyan7106/config-4.13.0-rc7 b/mainboards/tyan7106/config-4.13.0-rc7 deleted file mode 100644 index 365ba9bd..00000000 --- a/mainboards/tyan7106/config-4.13.0-rc7 +++ /dev/null @@ -1,2528 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.13.0-rc7 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_HAVE_UID16=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y -CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y -CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 -CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_COMPAT_OLD_SIGACTION=y -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -CONFIG_MODULE_FORCE_LOAD=y -CONFIG_MODULE_UNLOAD=y -CONFIG_MODULE_FORCE_UNLOAD=y -CONFIG_MODVERSIONS=y -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -CONFIG_BLK_CMDLINE_PARSER=y -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -CONFIG_PARTITION_ADVANCED=y -# CONFIG_ACORN_PARTITION is not set -# CONFIG_AIX_PARTITION is not set -# CONFIG_OSF_PARTITION is not set -# CONFIG_AMIGA_PARTITION is not set -# CONFIG_ATARI_PARTITION is not set -# CONFIG_MAC_PARTITION is not set -CONFIG_MSDOS_PARTITION=y -# CONFIG_BSD_DISKLABEL is not set -# CONFIG_MINIX_SUBPARTITION is not set -# CONFIG_SOLARIS_X86_PARTITION is not set -# CONFIG_UNIXWARE_DISKLABEL is not set -# CONFIG_LDM_PARTITION is not set -# CONFIG_SGI_PARTITION is not set -# CONFIG_ULTRIX_PARTITION is not set -# CONFIG_SUN_PARTITION is not set -# CONFIG_KARMA_PARTITION is not set -CONFIG_EFI_PARTITION=y -# CONFIG_SYSV68_PARTITION is not set -CONFIG_CMDLINE_PARTITION=y -CONFIG_BLOCK_COMPAT=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -CONFIG_IOSCHED_DEADLINE=y -CONFIG_IOSCHED_CFQ=y -# CONFIG_DEFAULT_DEADLINE is not set -CONFIG_DEFAULT_CFQ=y -# CONFIG_DEFAULT_NOOP is not set -CONFIG_DEFAULT_IOSCHED="cfq" -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_X2APIC is not set -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_INTEL_RDT_A is not set -CONFIG_X86_EXTENDED_PLATFORM=y -# CONFIG_X86_VSMP is not set -# CONFIG_X86_GOLDFISH is not set -# CONFIG_X86_INTEL_LPSS is not set -CONFIG_X86_AMD_PLATFORM_DEVICE=y -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -CONFIG_HYPERVISOR_GUEST=y -CONFIG_PARAVIRT=y -# CONFIG_PARAVIRT_DEBUG is not set -CONFIG_PARAVIRT_SPINLOCKS=y -# CONFIG_QUEUED_LOCK_STAT is not set -# CONFIG_XEN is not set -CONFIG_KVM_GUEST=y -# CONFIG_KVM_DEBUG_FS is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_PARAVIRT_CLOCK=y -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -CONFIG_GART_IOMMU=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -# CONFIG_SCHED_SMT is not set -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_BOUNCE=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_COMPAT_VDSO=y -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_X86_PM_TIMER=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -CONFIG_PCIEAER=y -# CONFIG_PCIE_ECRC is not set -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -CONFIG_PCIE_PTM=y -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_DEBUG=y -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -CONFIG_HT_IRQ=y -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_COMPAT_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -CONFIG_IA32_EMULATION=y -CONFIG_IA32_AOUT=y -# CONFIG_X86_X32 is not set -CONFIG_COMPAT_32=y -CONFIG_COMPAT=y -CONFIG_COMPAT_FOR_U64_ALIGNMENT=y -CONFIG_SYSVIPC_COMPAT=y -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_IRDA is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -CONFIG_CONNECTOR=y -CONFIG_PROC_EVENTS=y -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_CPQ_CISS_DA is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -CONFIG_VIRTIO_NET=y -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -CONFIG_NET_VENDOR_ALACRITECH=y -# CONFIG_SLICOSS is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -# CONFIG_ENA_ETHERNET is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CAVIUM=y -# CONFIG_THUNDER_NIC_PF is not set -# CONFIG_THUNDER_NIC_VF is not set -# CONFIG_THUNDER_NIC_BGX is not set -# CONFIG_THUNDER_NIC_RGX is not set -# CONFIG_LIQUIDIO is not set -# CONFIG_LIQUIDIO_VF is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -CONFIG_8139CP=y -# CONFIG_8139TOO is not set -CONFIG_R8169=y -CONFIG_NET_VENDOR_RENESAS=y -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_KVM is not set -CONFIG_PINCTRL=y - -# -# Pin controllers -# -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_CHERRYVIEW is not set -# CONFIG_PINCTRL_BROXTON is not set -# CONFIG_PINCTRL_CANNONLAKE is not set -# CONFIG_PINCTRL_GEMINILAKE is not set -# CONFIG_PINCTRL_SUNRISEPOINT is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y - -# -# Broadcom specific AMBA -# -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -# CONFIG_EDAC is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV is not set -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -CONFIG_RAS=y -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set - -# -# FPGA Configuration Support -# -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=m -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KMEMCHECK=y -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_PERCPU_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_TEST_KMOD is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_DEBUG is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set - -# -# Security options -# -CONFIG_KEYS=y -CONFIG_KEYS_COMPAT=y -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=m -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=m -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=m - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_SALSA20_X86_64 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=m -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=m -CONFIG_CRYPTO_JITTERENTROPY=m -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_ASYMMETRIC_KEY_TYPE is not set - -# -# Certificates for signature checking -# -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_MMIO_FLUSH=y -CONFIG_SBITMAP=y diff --git a/mainboards/tyan7106/config-4.14.111 b/mainboards/tyan7106/config-4.14.111 deleted file mode 100644 index 668213a2..00000000 --- a/mainboards/tyan7106/config-4.14.111 +++ /dev/null @@ -1,2385 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/tyan7106/pox.tcz b/mainboards/tyan7106/pox.tcz deleted file mode 100644 index 1d179eb4..00000000 Binary files a/mainboards/tyan7106/pox.tcz and /dev/null differ diff --git a/mainboards/walmart/robot/.gitignore b/mainboards/walmart/robot/.gitignore deleted file mode 100644 index 75ce46e4..00000000 --- a/mainboards/walmart/robot/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -BAK.TAR -*~ -SFS/ -bak/ -build-arm-sfs.sh -linux/ -netbooturoot.cpio -netbooturoot.sfs -webboot -wifi - diff --git a/mainboards/walmart/robot/Makefile b/mainboards/walmart/robot/Makefile deleted file mode 100644 index 1091e10f..00000000 --- a/mainboards/walmart/robot/Makefile +++ /dev/null @@ -1,126 +0,0 @@ -MAJOR ?= 5 -STABLE = $(MAJOR).10 -CONFIG ?= $(MAJOR).10.0 -default: netbooturoot.sfs - -cp:netbooturoot.sfs - sudo mount /dev/sdb1 /mnt - sudo cp netbooturoot.sfs /mnt/ - sudo umount /mnt - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel coreboot.bin - cp coreboot.bin image.bin - chmod +w image.bin - cbfstool image.bin print - cbfstool image.bin remove -n img/nerf - cbfstool image.bin remove -n genroms/pxe.rom - cbfstool image.bin add-payload -n img/nerf -f flashkernel - cbfstool image.bin print - -uCore: netbooturoo.cpio - mkimage -A arm -n 'u-root for Allwinner A10' -d netbooturoot.cpio -T ramdisk uCore - -qemu: uCore flashkernel - qemu-system-arm -kernel flashkernel -machine cubieboard -serial stdio -initrd uCore -append 'console=ttyS0 earlyprintk=ttyS0,115200,keep' - echo NO - exit 0 - qemu-system-arm -kernel uImage -machine cubieboard -serial stdio -initrd initramfs.linux_arm.cpio - echo NO - exit 0 - sudo /usr/bin/qemu-system-x86_64 -kernel flashkernel \ - -cpu max \ - -s \ - -m 1024m \ - -machine q35 \ - -object rng-random,filename=/dev/urandom,id=rng0 \ - -device virtio-rng-pci,rng=rng0 \ - -device e1000,netdev=n1 \ - -netdev user,id=n1,hostfwd=tcp:127.0.0.1:23-:2222,net=192.168.1.0/24,host=192.168.1.1 \ - -serial stdio \ - -append earlyprintk=ttyS0,115200\ console=ttyS0 \ - -monitor /dev/null \ - - -# add the following line to qemu if you want to snoop packets. - -object filter-dump,id=f1,netdev=n1,file=/tmp/vm0.pcap \ - - -netbootkernel: netbooturoot.cpio bzImage - cp linux/arch/arm/boot/bzImage kernel - -readrom: - sudo flashrom -p internal -r coreboot.bin - -writerom: image.bin - sudo flashrom -p internal -w image.bin - -netbooturoot.sfs: netbooturoot.cpio - sudo rm -rf SFS - mkdir -p SFS - (cd SFS && sudo cpio -iv < ../$<) - rm -f $@ - sudo mksquashfs SFS $@ -comp xz - -netbooturoot.cpio: Makefile - GOARCH=arm go build -o wifi github.com/u-root/webboot/cmds/wifi - GOARCH=arm go build -o webboot github.com/u-root/webboot/cmds/webboot - GOARCH=arm u-root -build=bb \ - -o $@ \ - -files ~/.ssh/cpu_rsa.pub:key.pub \ - -files ~/.ssh/cpu_rsa:id_rsa \ - -files ~/.ssh/authorized_keys:authorized_keys \ - -files ~/arm/etc:etc \ - -files ~/arm/bin:bin \ - -files ~/arm/sbin:sbin \ - -files ~/arm/usr:usr \ - -files bak/drv/8188fu.ko.lzma:8188fu.ko.lzma \ - -files boot:boot \ - -files bootSCREEN \ - -files wifi \ - -files webboot \ - all \ - github.com/u-root/cpu/cmds/cpud - -# for later: - #mkdir /tmp/r -# mkdir /tmp/m -# mount -t vfat /dev/mmcblk0p1 /tmp/m -# mount -t squashfs /tmp/m/u-root-victure.sfs /tmp/r - -uroot: - GOARCH=arm u-root -build=bb \ - -files ~/.ssh/cpu_rsa.pub:key.pub \ - all \ - github.com/u-root/cpu/cmds/cpu - cp /tmp/initramfs.linux_arm.cpio cpu.cpio - -flashkernel: Makefile - cp config-$(CONFIG) linux/.config - (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make oldconfig && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make -j32) - mkimage -C none -A arm -n 'walmart robot' -d linux/arch/arm/boot/zImage -T flashkernel -a 0xc1000000 -e 0xc1000000 flashkernel - cp linux/arch/arm/boot/zImage kernel - -fetch: getkernel geturoot getfiano getrom getpackages - -getpackages: - sudo apt install gcc-9-arm-linux-gnueabihf gcc-10-multilib-arm-linux-gnueabihf - -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v$(MAJOR).x/linux-$(STABLE).tar.xz - xzcat kernel.xz | tar x - mv linux-$(STABLE) linux - -getrom: - echo you create the kernel - echo on the APU2: flashrom -r coreboot.bin -p internal - echo copy that file here and for safety: - echo chmod a-w coreboot.bin -geturoot: - go get -u github.com/u-root/u-root -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/walmart/robot/boot b/mainboards/walmart/robot/boot deleted file mode 100644 index 636bb2ef..00000000 --- a/mainboards/walmart/robot/boot +++ /dev/null @@ -1,75 +0,0 @@ -# u root -echo screen fucks up the boot args, do this first step in minicom. -# setenv bootargs 'console=ttySGK0,115200 mem=36M rootfstype=squashfs root=/dev/mtdblock2 init=linuxrc mtdparts=gk_flash:320K(U),1664K(K),1152K(R),384K(C),-(A) single' -# fatload mmc 0 0xc1000000 uimage-goke-g1702s-9p -# bootm -cat >/dev/null << EOF -mount /dev -mount /sys -mount /tmp -mount /proc -mdev -s -mkdir /tmp/r -mkdir /tmp/m -mount -t vfat /dev/mmcblk0p1 /tmp/m -mount -t squashfs /tmp/m/netbooturoot.sfs /tmp/r -EOF - -# Now the script -# just run /tmp/r/boot -echo EXIT and run SCREEN -exit 0 - -/tmp/r/wifi -mount -o bind /dev /tmp/r/dev -mount -o bind /sys /tmp/r/sys -mount -o bind /proc /tmp/r/proc -/tmp/r/bbin/chroot /tmp/r/ /init -cpud -d -init& - -### - -HERE -modprobe /bak/drv/gkptz-2823.ko.lzma -insmod !$ -insmod /bak/drv/gkptz-2823.ko.lzma -insmod /bak/drv/8188fu.ko.lzma -insmod /bak/drv/GobiNet.ko.lzma -ifconfig -a -history -# the standard system -setenv bootargs 'console=ttySGK0,115200 mem=36M rootfstype=squashfs root=/dev/mtdblock2 init=linuxrc mtdparts=gk_flash:320K(U),1664K(K),1152K(R),384K(C),-(A) single' -sf probe;sf read 0xc1000000 0x50000 0x1A0000;bootm 0xc1000000; - -GK7102S # printenv -[PROCESS_SEPARATORS] printenv -arm_freq=0x00112032 -baudrate=115200 -bootargs=console=ttySGK0,115200 mem=36M rootfstype=squashfs root=/dev/mtdblock2 init=linuxrc mtdparts=gk_flash:320K(U),1664K(K),1152K(R),384K(C),-(A) -bootcmd=sf probe;sf read 0xc1000000 0x50000 0x1A0000;bootm 0xc1000000; -bootdelay=1 -bootfile=zImage -bsbsize=1M -consoledev=ttySGK0 -ethact=gk7101 -ethaddr=3C:97:0E:22:E1:14 -gatewayip=11.1.4.1 -hostname="gk7102" -ipaddr=192.168.11.34 -loadaddr=0xC1000000 -mem=36M -netdev=eth0 -netmask=255.255.255.0 -nfsserver=11.1.4.19 -phytype=0 -rootfstype=ubi.mtd=3 rootfstype=ubifs root=ubi0:rootfs -rootpath=/opt/work -serverip=192.168.11.100 -sfboot=setenv bootargs console=${consoledev},${baudrate} noinitrd mem=${mem} rw ${rootfstype} init=linuxrc ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:${netdev} mac=${ethaddr} phytype=${phytype};sf probe 0 0;sf read ${loadaddr} ${sfkernem -sfkernel=0x50000 -stderr=serial -stdin=serial -stdout=serial -tftpboot=setenv bootargs root=/dev/nfs nfsroot=${nfsserver}:${rootpath},proto=tcp,nfsvers=3,nolock ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:${netdev} mac=${ethaddr} phytype=${phytype} console=${consoledev},${baudrate} mem=${mem};tftpbm - -Environment size: 1270/65532 bytes diff --git a/mainboards/walmart/robot/bootSCREEN b/mainboards/walmart/robot/bootSCREEN deleted file mode 100644 index 6c56337a..00000000 --- a/mainboards/walmart/robot/bootSCREEN +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -insmod /tmp/r/8188fu.ko.lzma -mkdir /tmp/var -# PATH="/bak/ap:$PATH" /bak/ap/start-ap.sh gokewifi -ifconfig -a -TERM=screen -/tmp/r/bbin/stty rows 24 cols 80 -PATH=$PATH:/tmp/r/bbin:/tmp/r -/tmp/r/wifi -mount -o bind /dev /tmp/r/dev -mount -o bind /sys /tmp/r/sys -mount -o bind /proc /tmp/r/proc -/tmp/r/bbin/chroot /tmp/r/ /init -cpud -d -init& - diff --git a/mainboards/walmart/robot/config-3.4.43 b/mainboards/walmart/robot/config-3.4.43 deleted file mode 100644 index 696f6ee2..00000000 --- a/mainboards/walmart/robot/config-3.4.43 +++ /dev/null @@ -1,1831 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm 3.4.0 Kernel Configuration -# -CONFIG_ARM=y -CONFIG_MIGHT_HAVE_PCI=y -CONFIG_SYS_SUPPORTS_APM_EMULATION=y -CONFIG_GENERIC_GPIO=y -# CONFIG_ARCH_USES_GETTIMEOFFSET is not set -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_KTIME_SCALAR=y -CONFIG_HAVE_PROC_CPU=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_HAVE_LATENCYTOP_SUPPORT=y -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_RWSEM_GENERIC_SPINLOCK=y -CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_VECTORS_BASE=0xffff0000 -# CONFIG_ARM_PATCH_PHYS_VIRT is not set -CONFIG_PHYS_OFFSET=0xC0200000 -CONFIG_GENERIC_BUG=y -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_HAVE_IRQ_WORK=y - -# -# General setup -# -CONFIG_EXPERIMENTAL=y -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="arm-goke-linux-uclibcgnueabi-" -CONFIG_LOCALVERSION="-CyReVolt" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -# CONFIG_KERNEL_GZIP is not set -CONFIG_KERNEL_LZMA=y -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -CONFIG_DEFAULT_HOSTNAME="GK710XS" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_FHANDLE is not set -# CONFIG_TASKSTATS is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_GENERIC_HARDIRQS=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_HARDIRQS=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y - -# -# RCU Subsystem -# -CONFIG_TINY_PREEMPT_RCU=y -CONFIG_PREEMPT_RCU=y -# CONFIG_TREE_RCU_TRACE is not set -# CONFIG_RCU_BOOST is not set -CONFIG_IKCONFIG=y -# CONFIG_IKCONFIG_PROC is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_CGROUPS=y -# CONFIG_CGROUP_DEBUG is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CGROUP_DEVICE is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_CPUACCT is not set -# CONFIG_RESOURCE_COUNTERS is not set -# CONFIG_CGROUP_SCHED is not set -# CONFIG_BLK_CGROUP is not set -# CONFIG_CHECKPOINT_RESTORE is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -CONFIG_USER_NS=y -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -# CONFIG_BLK_DEV_INITRD is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_EXPERT=y -CONFIG_UID16=y -# CONFIG_SYSCTL_SYSCALL is not set -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_HOTPLUG=y -CONFIG_PRINTK=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -CONFIG_PERF_USE_VMALLOC=y - -# -# Kernel Performance Events And Counters -# -# CONFIG_PERF_EVENTS is not set -# CONFIG_PERF_COUNTERS is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_PROFILING is not set -CONFIG_HAVE_OPROFILE=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y - -# -# GCOV-based kernel profiling -# -CONFIG_HAVE_GENERIC_DMA_COHERENT=y -CONFIG_SLABINFO=y -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -CONFIG_MODULE_UNLOAD=y -# CONFIG_MODULE_FORCE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -CONFIG_BLOCK=y -CONFIG_LBDAF=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -CONFIG_IOSCHED_DEADLINE=y -CONFIG_IOSCHED_CFQ=y -# CONFIG_DEFAULT_DEADLINE is not set -CONFIG_DEFAULT_CFQ=y -# CONFIG_DEFAULT_NOOP is not set -CONFIG_DEFAULT_IOSCHED="cfq" -# CONFIG_INLINE_SPIN_TRYLOCK is not set -# CONFIG_INLINE_SPIN_TRYLOCK_BH is not set -# CONFIG_INLINE_SPIN_LOCK is not set -# CONFIG_INLINE_SPIN_LOCK_BH is not set -# CONFIG_INLINE_SPIN_LOCK_IRQ is not set -# CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set -CONFIG_UNINLINE_SPIN_UNLOCK=y -# CONFIG_INLINE_SPIN_UNLOCK_BH is not set -# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set -# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set -# CONFIG_INLINE_READ_TRYLOCK is not set -# CONFIG_INLINE_READ_LOCK is not set -# CONFIG_INLINE_READ_LOCK_BH is not set -# CONFIG_INLINE_READ_LOCK_IRQ is not set -# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set -# CONFIG_INLINE_READ_UNLOCK is not set -# CONFIG_INLINE_READ_UNLOCK_BH is not set -# CONFIG_INLINE_READ_UNLOCK_IRQ is not set -# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set -# CONFIG_INLINE_WRITE_TRYLOCK is not set -# CONFIG_INLINE_WRITE_LOCK is not set -# CONFIG_INLINE_WRITE_LOCK_BH is not set -# CONFIG_INLINE_WRITE_LOCK_IRQ is not set -# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set -# CONFIG_INLINE_WRITE_UNLOCK is not set -# CONFIG_INLINE_WRITE_UNLOCK_BH is not set -# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set -# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set -# CONFIG_MUTEX_SPIN_ON_OWNER is not set -# CONFIG_FREEZER is not set - -# -# System Type -# -CONFIG_MMU=y -# CONFIG_ARCH_INTEGRATOR is not set -# CONFIG_ARCH_REALVIEW is not set -CONFIG_ARCH_VERSATILE=y -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_AT91 is not set -# CONFIG_ARCH_BCMRING is not set -# CONFIG_ARCH_HIGHBANK is not set -# CONFIG_ARCH_CLPS711X is not set -# CONFIG_ARCH_CNS3XXX is not set -# CONFIG_ARCH_GEMINI is not set -# CONFIG_ARCH_PRIMA2 is not set -# CONFIG_ARCH_EBSA110 is not set -# CONFIG_ARCH_EP93XX is not set -# CONFIG_ARCH_FOOTBRIDGE is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_MXS is not set -# CONFIG_ARCH_NETX is not set -# CONFIG_ARCH_H720X is not set -# CONFIG_ARCH_IOP13XX is not set -# CONFIG_ARCH_IOP32X is not set -# CONFIG_ARCH_IOP33X is not set -# CONFIG_ARCH_IXP23XX is not set -# CONFIG_ARCH_IXP2000 is not set -# CONFIG_ARCH_IXP4XX is not set -# CONFIG_ARCH_DOVE is not set -# CONFIG_ARCH_KIRKWOOD is not set -# CONFIG_ARCH_LPC32XX is not set -# CONFIG_ARCH_MV78XX0 is not set -# CONFIG_ARCH_ORION5X is not set -# CONFIG_ARCH_MMP is not set -# CONFIG_ARCH_KS8695 is not set -# CONFIG_ARCH_W90X900 is not set -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_PICOXCELL is not set -# CONFIG_ARCH_PNX4008 is not set -# CONFIG_ARCH_PXA is not set -# CONFIG_ARCH_MSM is not set -# CONFIG_ARCH_SHMOBILE is not set -# CONFIG_ARCH_RPC is not set -# CONFIG_ARCH_SA1100 is not set -# CONFIG_ARCH_S3C24XX is not set -# CONFIG_ARCH_S3C64XX is not set -# CONFIG_ARCH_S5P64X0 is not set -# CONFIG_ARCH_S5PC100 is not set -# CONFIG_ARCH_S5PV210 is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_SHARK is not set -# CONFIG_ARCH_U300 is not set -# CONFIG_ARCH_U8500 is not set -# CONFIG_ARCH_NOMADIK is not set -# CONFIG_ARCH_DAVINCI is not set -# CONFIG_ARCH_OMAP is not set -# CONFIG_PLAT_SPEAR is not set -# CONFIG_ARCH_VT8500 is not set -# CONFIG_ARCH_ZYNQ is not set -# CONFIG_GPIO_PCA953X is not set - -# -# System MMU -# - -# -# Versatile platform type -# -CONFIG_ARCH_VERSATILE_PB=y -# CONFIG_MACH_VERSATILE_AB is not set -# CONFIG_MACH_VERSATILE_DT is not set -CONFIG_PLAT_VERSATILE_CLCD=y -CONFIG_PLAT_VERSATILE_FPGA_IRQ=y -CONFIG_PLAT_VERSATILE_SCHED_CLOCK=y -CONFIG_PLAT_VERSATILE=y -CONFIG_ARM_TIMER_SP804=y - -# -# Processor Type -# -CONFIG_CPU_ARM926T=y -CONFIG_CPU_32v5=y -CONFIG_CPU_ABRT_EV5TJ=y -CONFIG_CPU_PABRT_LEGACY=y -CONFIG_CPU_CACHE_VIVT=y -CONFIG_CPU_COPY_V4WB=y -CONFIG_CPU_TLB_V4WBI=y -CONFIG_CPU_CP15=y -CONFIG_CPU_CP15_MMU=y -CONFIG_CPU_USE_DOMAINS=y - -# -# Processor Features -# -# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set -# CONFIG_ARM_THUMB is not set -# CONFIG_CPU_ICACHE_DISABLE is not set -# CONFIG_CPU_DCACHE_DISABLE is not set -# CONFIG_CPU_DCACHE_WRITETHROUGH is not set -# CONFIG_CPU_CACHE_ROUND_ROBIN is not set -# CONFIG_CACHE_L2X0 is not set -CONFIG_ARM_L1_CACHE_SHIFT=5 -CONFIG_ARM_NR_BANKS=8 -CONFIG_MULTI_IRQ_HANDLER=y -CONFIG_ARM_VIC=y -CONFIG_ARM_VIC_NR=2 -CONFIG_ICST=y - -# -# Bus support -# -CONFIG_ARM_AMBA=y -# CONFIG_PCI is not set -# CONFIG_PCI_SYSCALL is not set -# CONFIG_ARCH_SUPPORTS_MSI is not set -# CONFIG_PCCARD is not set - -# -# Kernel Features -# -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y -# CONFIG_VMSPLIT_3G is not set -CONFIG_VMSPLIT_2G=y -# CONFIG_VMSPLIT_1G is not set -CONFIG_PAGE_OFFSET=0x80000000 -CONFIG_ARCH_NR_GPIO=0 -# CONFIG_PREEMPT_NONE is not set -# CONFIG_PREEMPT_VOLUNTARY is not set -CONFIG_PREEMPT=y -CONFIG_PREEMPT_COUNT=y -CONFIG_HZ=100 -CONFIG_AEABI=y -CONFIG_OABI_COMPAT=y -# CONFIG_ARCH_SPARSEMEM_DEFAULT is not set -# CONFIG_ARCH_SELECT_MEMORY_MODEL is not set -CONFIG_HAVE_ARCH_PFN_VALID=y -# CONFIG_HIGHMEM is not set -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_PAGEFLAGS_EXTENDED=y -CONFIG_SPLIT_PTLOCK_CPUS=999999 -# CONFIG_COMPACTION is not set -# CONFIG_PHYS_ADDR_T_64BIT is not set -CONFIG_ZONE_DMA_FLAG=0 -CONFIG_VIRT_TO_BUS=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -CONFIG_FORCE_MAX_ZONEORDER=11 -# CONFIG_LEDS is not set -CONFIG_ALIGNMENT_TRAP=y -CONFIG_UACCESS_WITH_MEMCPY=y -# CONFIG_SECCOMP is not set -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_DEPRECATED_PARAM_STRUCT=y - -# -# Boot options -# -# CONFIG_USE_OF is not set -CONFIG_ZBOOT_ROM_TEXT=0x0 -CONFIG_ZBOOT_ROM_BSS=0x0 -CONFIG_CMDLINE="" -# CONFIG_XIP_KERNEL is not set -CONFIG_KEXEC=y -CONFIG_ATAGS_PROC=y -# CONFIG_CRASH_DUMP is not set -# CONFIG_AUTO_ZRELADDR is not set - -# -# CPU Power Management -# -# CONFIG_CPU_IDLE is not set - -# -# Floating point emulation -# - -# -# At least one emulation must be selected -# -# CONFIG_FPE_NWFPE is not set -# CONFIG_FPE_FASTFPE is not set -CONFIG_VFP=y - -# -# Userspace binary formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_HAVE_AOUT=y -# CONFIG_BINFMT_AOUT is not set -# CONFIG_BINFMT_MISC is not set - -# -# Power management options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM_RUNTIME is not set -CONFIG_ARCH_SUSPEND_POSSIBLE=y -# CONFIG_ARM_CPU_SUSPEND is not set -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_UNIX=y -CONFIG_UNIX_DIAG=y -CONFIG_XFRM=y -CONFIG_XFRM_USER=y -# CONFIG_XFRM_SUB_POLICY is not set -# CONFIG_XFRM_MIGRATE is not set -# CONFIG_XFRM_STATISTICS is not set -CONFIG_XFRM_IPCOMP=y -CONFIG_NET_KEY=y -# CONFIG_NET_KEY_MIGRATE is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -CONFIG_IP_ADVANCED_ROUTER=y -CONFIG_IP_FIB_TRIE_STATS=y -CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_MULTIPATH=y -CONFIG_IP_ROUTE_VERBOSE=y -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -CONFIG_IP_PNP_RARP=y -CONFIG_NET_IPIP=y -CONFIG_NET_IPGRE_DEMUX=y -CONFIG_NET_IPGRE=y -CONFIG_NET_IPGRE_BROADCAST=y -CONFIG_IP_MROUTE=y -CONFIG_IP_MROUTE_MULTIPLE_TABLES=y -CONFIG_IP_PIMSM_V1=y -CONFIG_IP_PIMSM_V2=y -CONFIG_ARPD=y -CONFIG_SYN_COOKIES=y -CONFIG_INET_AH=y -CONFIG_INET_ESP=y -CONFIG_INET_IPCOMP=y -CONFIG_INET_XFRM_TUNNEL=y -CONFIG_INET_TUNNEL=y -CONFIG_INET_XFRM_MODE_TRANSPORT=y -CONFIG_INET_XFRM_MODE_TUNNEL=y -CONFIG_INET_XFRM_MODE_BEET=y -CONFIG_INET_LRO=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -CONFIG_INET_UDP_DIAG=y -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_PRIVACY is not set -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -CONFIG_INET6_XFRM_MODE_TRANSPORT=y -CONFIG_INET6_XFRM_MODE_TUNNEL=y -CONFIG_INET6_XFRM_MODE_BEET=y -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -CONFIG_IPV6_SIT=y -# CONFIG_IPV6_SIT_6RD is not set -CONFIG_IPV6_NDISC_NODETYPE=y -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_ECONET is not set -# CONFIG_WAN_ROUTER is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_NETPRIO_CGROUP is not set -CONFIG_BQL=y -CONFIG_HAVE_BPF_JIT=y -# CONFIG_BPF_JIT is not set - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_IRDA is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -CONFIG_FIB_RULES=y -CONFIG_WIRELESS=y -CONFIG_WIRELESS_EXT=y -CONFIG_WEXT_CORE=y -CONFIG_WEXT_PROC=y -CONFIG_WEXT_SPY=y -CONFIG_WEXT_PRIV=y -CONFIG_CFG80211=y -# CONFIG_NL80211_TESTMODE is not set -# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set -# CONFIG_CFG80211_REG_DEBUG is not set -CONFIG_CFG80211_DEFAULT_PS=y -# CONFIG_CFG80211_INTERNAL_REGDB is not set -CONFIG_CFG80211_WEXT=y -# CONFIG_WIRELESS_EXT_SYSFS is not set -CONFIG_LIB80211=m -CONFIG_LIB80211_CRYPT_WEP=m -CONFIG_LIB80211_CRYPT_CCMP=m -CONFIG_LIB80211_CRYPT_TKIP=m -# CONFIG_LIB80211_DEBUG is not set -CONFIG_MAC80211=y -CONFIG_MAC80211_HAS_RC=y -# CONFIG_MAC80211_RC_PID is not set -CONFIG_MAC80211_RC_MINSTREL=y -CONFIG_MAC80211_RC_MINSTREL_HT=y -CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y -CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" -# CONFIG_MAC80211_MESH is not set -# CONFIG_MAC80211_DEBUG_MENU is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set - -# -# Device Drivers -# - -# -# Generic Driver Options -# -CONFIG_UEVENT_HELPER_PATH="" -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -# CONFIG_DMA_SHARED_BUFFER is not set -# CONFIG_CONNECTOR is not set -CONFIG_MTD=y -# CONFIG_MTD_TESTS is not set -# CONFIG_MTD_REDBOOT_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -CONFIG_MTD_AFS_PARTS=y -# CONFIG_MTD_AR7_PARTS is not set - -# -# User Modules And Translation Layers -# -CONFIG_MTD_CHAR=y -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_CFI_I4 is not set -# CONFIG_MTD_CFI_I8 is not set -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_PLATRAM is not set -# CONFIG_MTD_PISMO is not set - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_M25P80 is not set -# CONFIG_MTD_SST25L is not set -CONFIG_MTD_SLRAM=y -CONFIG_MTD_PHRAM=y -# CONFIG_MTD_MTDRAM is not set -CONFIG_MTD_BLOCK2MTD=y - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# CONFIG_MTD_NAND is not set -# CONFIG_MTD_ONENAND is not set - -# -# LPDDR flash memory drivers -# -# CONFIG_MTD_LPDDR is not set -# CONFIG_MTD_UBI is not set -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set - -# -# DRBD disabled because PROC_FS, INET or CONNECTOR not selected -# -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_UB is not set -CONFIG_BLK_DEV_RAM=y -CONFIG_BLK_DEV_RAM_COUNT=16 -CONFIG_BLK_DEV_RAM_SIZE=4096 -# CONFIG_BLK_DEV_XIP is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_MG_DISK is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_ATMEL_PWM is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1780 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_TI_DAC7512 is not set -# CONFIG_ARM_CHARLCD is not set -# CONFIG_BMP085 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_IWMC3200TOP is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# CONFIG_SCSI_DMA is not set -# CONFIG_SCSI_NETLINK is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -CONFIG_MII=y -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_NETPOLL is not set -# CONFIG_NET_POLL_CONTROLLER is not set -# CONFIG_TUN is not set -# CONFIG_VETH is not set - -# -# CAIF transport drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_CALXEDA_XGMAC is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CIRRUS is not set -# CONFIG_DM9000 is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_FARADAY is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# USB Network Adapters -# -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -# CONFIG_LIBERTAS_THINFIRM is not set -# CONFIG_AT76C50X_USB is not set -# CONFIG_USB_ZD1201 is not set -# CONFIG_USB_NET_RNDIS_WLAN is not set -# CONFIG_RTL8187 is not set -# CONFIG_MAC80211_HWSIM is not set -# CONFIG_ATH_COMMON is not set -# CONFIG_B43 is not set -# CONFIG_B43LEGACY is not set -# CONFIG_BRCMFMAC is not set -CONFIG_HOSTAP=m -# CONFIG_HOSTAP_FIRMWARE is not set -# CONFIG_IWM is not set -# CONFIG_LIBERTAS is not set -# CONFIG_P54_COMMON is not set -# CONFIG_RT2X00 is not set -CONFIG_RTL8192CU=y -CONFIG_RTLWIFI=y -# CONFIG_RTLWIFI_DEBUG is not set -CONFIG_RTL8192C_COMMON=y -# CONFIG_WL1251 is not set -# CONFIG_WL12XX_MENU is not set -# CONFIG_ZD1211RW is not set -# CONFIG_MWIFIEX is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -CONFIG_INPUT_POLLDEV=y -# CONFIG_INPUT_SPARSEKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_MPU3050 is not set -# CONFIG_INPUT_GP2A is not set -# CONFIG_INPUT_GPIO_TILT_POLLED is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_CMA3000 is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -CONFIG_DEVPTS_MULTIPLE_INSTANCES=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -# CONFIG_SERIAL_8250 is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_AMBA_PL011 is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX3107 is not set -CONFIG_SERIAL_CORE=y -# CONFIG_SERIAL_TIMBERDALE is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -CONFIG_SERIAL_ALTERA_UART=y -CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 -CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 -# CONFIG_SERIAL_ALTERA_UART_CONSOLE is not set -# CONFIG_SERIAL_IFX6X60 is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_HVC_DCC is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_R3964 is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_RAMOOPS is not set -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_VERSATILE is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_OC_TINY is not set -CONFIG_SPI_PL022=y -# CONFIG_SPI_PXA2XX_PCI is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_DESIGNWARE is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_HSI is not set - -# -# PPS support -# -# CONFIG_PPS is not set - -# -# PPS generators support -# - -# -# PTP clock support -# - -# -# Enable Device Drivers -> PPS to see the PTP clock options. -# -CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y -CONFIG_GPIOLIB=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y - -# -# Memory mapped GPIO drivers: -# -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_PL061 is not set - -# -# I2C GPIO expanders: -# -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_SX150X is not set -# CONFIG_GPIO_ADP5588 is not set - -# -# PCI GPIO expanders: -# - -# -# SPI GPIO expanders: -# -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MCP23S08 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_74X164 is not set - -# -# AC97 GPIO expanders: -# - -# -# MODULbus GPIO expanders: -# -# CONFIG_W1 is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_ARM_SP805_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y - -# -# Broadcom specific AMBA -# -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_ASIC3 is not set -# CONFIG_HTC_EGPIO is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_STMPE is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_T7L66XB is not set -# CONFIG_MFD_TC6387XB is not set -# CONFIG_MFD_TC6393XB is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_S5M_CORE is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_MC13XXX is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_DRM is not set -# CONFIG_VGASTATE is not set -# CONFIG_VIDEO_OUTPUT_CONTROL is not set -# CONFIG_FB is not set -# CONFIG_EXYNOS_VIDEO is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -# CONFIG_SOUND is not set -# CONFIG_HID_SUPPORT is not set -# CONFIG_USB_ARCH_HAS_OHCI is not set -# CONFIG_USB_ARCH_HAS_EHCI is not set -# CONFIG_USB_ARCH_HAS_XHCI is not set -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -# CONFIG_USB_DEBUG is not set -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -# CONFIG_USB_DEVICEFS is not set -CONFIG_USB_DEVICE_CLASS=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_MON is not set -# CONFIG_USB_WUSB_CBAF is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_ISP1760_HCD is not set -# CONFIG_USB_ISP1362_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -CONFIG_USB_MUSB_HDRC=y -# CONFIG_USB_MUSB_TUSB6010 is not set -CONFIG_MUSB_PIO_ONLY=y -# CONFIG_USB_RENESAS_USBHS is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -CONFIG_USB_WDM=y -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -# CONFIG_USB_LIBUSUAL is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_RIO500 is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_LED is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -CONFIG_USB_GADGET=y -# CONFIG_USB_GADGET_DEBUG is not set -# CONFIG_USB_GADGET_DEBUG_FILES is not set -CONFIG_USB_GADGET_VBUS_DRAW=2 -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 -# CONFIG_USB_FUSB300 is not set -# CONFIG_USB_R8A66597 is not set -# CONFIG_USB_MV_UDC is not set -# CONFIG_USB_GADGET_MUSB_HDRC is not set -# CONFIG_USB_M66592 is not set -# CONFIG_USB_NET2272 is not set -# CONFIG_USB_DUMMY_HCD is not set -CONFIG_USB_GADGET_DUALSPEED=y -# CONFIG_USB_ZERO is not set -# CONFIG_USB_ETH is not set -# CONFIG_USB_G_NCM is not set -# CONFIG_USB_GADGETFS is not set -# CONFIG_USB_FUNCTIONFS is not set -# CONFIG_USB_FILE_STORAGE is not set -# CONFIG_USB_MASS_STORAGE is not set -# CONFIG_USB_G_SERIAL is not set -# CONFIG_USB_G_PRINTER is not set -# CONFIG_USB_CDC_COMPOSITE is not set -# CONFIG_USB_G_ACM_MS is not set -# CONFIG_USB_G_MULTI is not set -# CONFIG_USB_G_HID is not set -# CONFIG_USB_G_DBGP is not set - -# -# OTG and related infrastructure -# -CONFIG_USB_OTG_UTILS=y -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ULPI is not set -CONFIG_NOP_USB_XCEIV=y -CONFIG_MMC=y -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_UNSAFE_RESUME is not set -CONFIG_MMC_CLKGATE=y - -# -# MMC/SD/SDIO Card Drivers -# -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=32 -CONFIG_MMC_BLOCK_BOUNCE=y -# CONFIG_SDIO_UART is not set -CONFIG_MMC_TEST=y - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_ARMMMCI is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SDHCI_PXAV3 is not set -# CONFIG_MMC_SDHCI_PXAV2 is not set -# CONFIG_MMC_SPI is not set -# CONFIG_MMC_DW is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_DEBUG=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_DS3234 is not set -# CONFIG_RTC_DRV_PCF2123 is not set - -# -# Platform RTC drivers -# -# CONFIG_RTC_DRV_CMOS is not set -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_PL030 is not set -# CONFIG_RTC_DRV_PL031 is not set -CONFIG_DMADEVICES=y -CONFIG_DMADEVICES_DEBUG=y -# CONFIG_DMADEVICES_VDEBUG is not set - -# -# DMA Devices -# -# CONFIG_AMBA_PL08X is not set -# CONFIG_DW_DMAC is not set -# CONFIG_TIMB_DMA is not set -# CONFIG_PL330_DMA is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_BALLOON is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -CONFIG_STAGING=y -# CONFIG_USBIP_CORE is not set -# CONFIG_W35UND is not set -# CONFIG_PRISM2_USB is not set -# CONFIG_ECHO is not set -# CONFIG_ASUS_OLED is not set -# CONFIG_RTLLIB is not set -CONFIG_R8712U=y -# CONFIG_TRANZPORT is not set -# CONFIG_VT6656 is not set -# CONFIG_IIO is not set -# CONFIG_BCM_WIMAX is not set -# CONFIG_FT1000 is not set - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set -# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set -# CONFIG_STAGING_MEDIA is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_PHONE is not set -# CONFIG_USB_WPAN_HCD is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_MACH_CLKDEV=y - -# -# Hardware Spinlock drivers -# -CONFIG_CLKSRC_MMIO=y -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers (EXPERIMENTAL) -# - -# -# Rpmsg drivers (EXPERIMENTAL) -# -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_PM_DEVFREQ is not set - -# -# File systems -# -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_FILE_LOCKING=y -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -CONFIG_AUTOFS4_FS=y -# CONFIG_FUSE_FS is not set -CONFIG_GENERIC_ACL=y - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -CONFIG_CACHEFILES=y -# CONFIG_CACHEFILES_DEBUG is not set -# CONFIG_CACHEFILES_HISTOGRAM is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLB_PAGE is not set -CONFIG_CONFIGFS_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -CONFIG_JFFS2_FS=y -CONFIG_JFFS2_FS_DEBUG=0 -CONFIG_JFFS2_FS_WRITEBUFFER=y -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set -# CONFIG_JFFS2_SUMMARY is not set -# CONFIG_JFFS2_FS_XATTR is not set -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set -CONFIG_JFFS2_ZLIB=y -# CONFIG_JFFS2_LZO is not set -CONFIG_JFFS2_RTIME=y -# CONFIG_JFFS2_RUBIN is not set -# CONFIG_LOGFS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -# CONFIG_SQUASHFS_XATTR is not set -# CONFIG_SQUASHFS_ZLIB is not set -# CONFIG_SQUASHFS_LZO is not set -CONFIG_SQUASHFS_XZ=y -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FSCACHE is not set -# CONFIG_9P_FS_POSIX_ACL is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set - -# -# Kernel hacking -# -CONFIG_PRINTK_TIME=y -CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 -# CONFIG_ENABLE_WARN_DEPRECATED is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_DEBUG_FS is not set -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_SHIRQ is not set -# CONFIG_LOCKUP_DETECTOR is not set -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# CONFIG_TIMER_STATS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -# CONFIG_DEBUG_KMEMLEAK is not set -CONFIG_DEBUG_PREEMPT=y -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_RT_MUTEX_TESTER is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_SPARSE_RCU_POINTER is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_DEBUG_BUGVERBOSE=y -# CONFIG_DEBUG_INFO is not set -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_WRITECOUNT is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set -CONFIG_FRAME_POINTER=y -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -# CONFIG_DEBUG_PAGEALLOC is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_STRICT_DEVMEM is not set -# CONFIG_ARM_UNWIND is not set -# CONFIG_DEBUG_USER is not set -# CONFIG_DEBUG_LL is not set -# CONFIG_OC_ETM is not set - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEYS_DEBUG_PROC_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_PCOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -# CONFIG_CRYPTO_NULL is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_SEQIV is not set - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set - -# -# Hash modes -# -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -CONFIG_CRYPTO_MICHAEL_MIC=y -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_ANUBIS is not set -CONFIG_CRYPTO_ARC4=y -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -# CONFIG_CRYPTO_ZLIB is not set -CONFIG_CRYPTO_LZO=y - -# -# Random Number Generation -# -CONFIG_CRYPTO_ANSI_CPRNG=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -CONFIG_CRYPTO_HW=y -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IO=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -CONFIG_CRC_ITU_T=y -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT=y -CONFIG_HAS_DMA=y -CONFIG_DQL=y -CONFIG_NLATTR=y -CONFIG_GENERIC_ATOMIC64=y -CONFIG_AVERAGE=y -# CONFIG_CORDIC is not set diff --git a/mainboards/walmart/robot/config-5.10.0 b/mainboards/walmart/robot/config-5.10.0 deleted file mode 100644 index 696f6ee2..00000000 --- a/mainboards/walmart/robot/config-5.10.0 +++ /dev/null @@ -1,1831 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm 3.4.0 Kernel Configuration -# -CONFIG_ARM=y -CONFIG_MIGHT_HAVE_PCI=y -CONFIG_SYS_SUPPORTS_APM_EMULATION=y -CONFIG_GENERIC_GPIO=y -# CONFIG_ARCH_USES_GETTIMEOFFSET is not set -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_KTIME_SCALAR=y -CONFIG_HAVE_PROC_CPU=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_HAVE_LATENCYTOP_SUPPORT=y -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_RWSEM_GENERIC_SPINLOCK=y -CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_VECTORS_BASE=0xffff0000 -# CONFIG_ARM_PATCH_PHYS_VIRT is not set -CONFIG_PHYS_OFFSET=0xC0200000 -CONFIG_GENERIC_BUG=y -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_HAVE_IRQ_WORK=y - -# -# General setup -# -CONFIG_EXPERIMENTAL=y -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="arm-goke-linux-uclibcgnueabi-" -CONFIG_LOCALVERSION="-CyReVolt" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -# CONFIG_KERNEL_GZIP is not set -CONFIG_KERNEL_LZMA=y -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -CONFIG_DEFAULT_HOSTNAME="GK710XS" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_FHANDLE is not set -# CONFIG_TASKSTATS is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_GENERIC_HARDIRQS=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_HARDIRQS=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y - -# -# RCU Subsystem -# -CONFIG_TINY_PREEMPT_RCU=y -CONFIG_PREEMPT_RCU=y -# CONFIG_TREE_RCU_TRACE is not set -# CONFIG_RCU_BOOST is not set -CONFIG_IKCONFIG=y -# CONFIG_IKCONFIG_PROC is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_CGROUPS=y -# CONFIG_CGROUP_DEBUG is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CGROUP_DEVICE is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_CPUACCT is not set -# CONFIG_RESOURCE_COUNTERS is not set -# CONFIG_CGROUP_SCHED is not set -# CONFIG_BLK_CGROUP is not set -# CONFIG_CHECKPOINT_RESTORE is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -CONFIG_USER_NS=y -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -# CONFIG_BLK_DEV_INITRD is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_EXPERT=y -CONFIG_UID16=y -# CONFIG_SYSCTL_SYSCALL is not set -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_HOTPLUG=y -CONFIG_PRINTK=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -CONFIG_PERF_USE_VMALLOC=y - -# -# Kernel Performance Events And Counters -# -# CONFIG_PERF_EVENTS is not set -# CONFIG_PERF_COUNTERS is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_PROFILING is not set -CONFIG_HAVE_OPROFILE=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y - -# -# GCOV-based kernel profiling -# -CONFIG_HAVE_GENERIC_DMA_COHERENT=y -CONFIG_SLABINFO=y -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -CONFIG_MODULE_UNLOAD=y -# CONFIG_MODULE_FORCE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -CONFIG_BLOCK=y -CONFIG_LBDAF=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -CONFIG_IOSCHED_DEADLINE=y -CONFIG_IOSCHED_CFQ=y -# CONFIG_DEFAULT_DEADLINE is not set -CONFIG_DEFAULT_CFQ=y -# CONFIG_DEFAULT_NOOP is not set -CONFIG_DEFAULT_IOSCHED="cfq" -# CONFIG_INLINE_SPIN_TRYLOCK is not set -# CONFIG_INLINE_SPIN_TRYLOCK_BH is not set -# CONFIG_INLINE_SPIN_LOCK is not set -# CONFIG_INLINE_SPIN_LOCK_BH is not set -# CONFIG_INLINE_SPIN_LOCK_IRQ is not set -# CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set -CONFIG_UNINLINE_SPIN_UNLOCK=y -# CONFIG_INLINE_SPIN_UNLOCK_BH is not set -# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set -# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set -# CONFIG_INLINE_READ_TRYLOCK is not set -# CONFIG_INLINE_READ_LOCK is not set -# CONFIG_INLINE_READ_LOCK_BH is not set -# CONFIG_INLINE_READ_LOCK_IRQ is not set -# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set -# CONFIG_INLINE_READ_UNLOCK is not set -# CONFIG_INLINE_READ_UNLOCK_BH is not set -# CONFIG_INLINE_READ_UNLOCK_IRQ is not set -# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set -# CONFIG_INLINE_WRITE_TRYLOCK is not set -# CONFIG_INLINE_WRITE_LOCK is not set -# CONFIG_INLINE_WRITE_LOCK_BH is not set -# CONFIG_INLINE_WRITE_LOCK_IRQ is not set -# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set -# CONFIG_INLINE_WRITE_UNLOCK is not set -# CONFIG_INLINE_WRITE_UNLOCK_BH is not set -# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set -# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set -# CONFIG_MUTEX_SPIN_ON_OWNER is not set -# CONFIG_FREEZER is not set - -# -# System Type -# -CONFIG_MMU=y -# CONFIG_ARCH_INTEGRATOR is not set -# CONFIG_ARCH_REALVIEW is not set -CONFIG_ARCH_VERSATILE=y -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_AT91 is not set -# CONFIG_ARCH_BCMRING is not set -# CONFIG_ARCH_HIGHBANK is not set -# CONFIG_ARCH_CLPS711X is not set -# CONFIG_ARCH_CNS3XXX is not set -# CONFIG_ARCH_GEMINI is not set -# CONFIG_ARCH_PRIMA2 is not set -# CONFIG_ARCH_EBSA110 is not set -# CONFIG_ARCH_EP93XX is not set -# CONFIG_ARCH_FOOTBRIDGE is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_MXS is not set -# CONFIG_ARCH_NETX is not set -# CONFIG_ARCH_H720X is not set -# CONFIG_ARCH_IOP13XX is not set -# CONFIG_ARCH_IOP32X is not set -# CONFIG_ARCH_IOP33X is not set -# CONFIG_ARCH_IXP23XX is not set -# CONFIG_ARCH_IXP2000 is not set -# CONFIG_ARCH_IXP4XX is not set -# CONFIG_ARCH_DOVE is not set -# CONFIG_ARCH_KIRKWOOD is not set -# CONFIG_ARCH_LPC32XX is not set -# CONFIG_ARCH_MV78XX0 is not set -# CONFIG_ARCH_ORION5X is not set -# CONFIG_ARCH_MMP is not set -# CONFIG_ARCH_KS8695 is not set -# CONFIG_ARCH_W90X900 is not set -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_PICOXCELL is not set -# CONFIG_ARCH_PNX4008 is not set -# CONFIG_ARCH_PXA is not set -# CONFIG_ARCH_MSM is not set -# CONFIG_ARCH_SHMOBILE is not set -# CONFIG_ARCH_RPC is not set -# CONFIG_ARCH_SA1100 is not set -# CONFIG_ARCH_S3C24XX is not set -# CONFIG_ARCH_S3C64XX is not set -# CONFIG_ARCH_S5P64X0 is not set -# CONFIG_ARCH_S5PC100 is not set -# CONFIG_ARCH_S5PV210 is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_SHARK is not set -# CONFIG_ARCH_U300 is not set -# CONFIG_ARCH_U8500 is not set -# CONFIG_ARCH_NOMADIK is not set -# CONFIG_ARCH_DAVINCI is not set -# CONFIG_ARCH_OMAP is not set -# CONFIG_PLAT_SPEAR is not set -# CONFIG_ARCH_VT8500 is not set -# CONFIG_ARCH_ZYNQ is not set -# CONFIG_GPIO_PCA953X is not set - -# -# System MMU -# - -# -# Versatile platform type -# -CONFIG_ARCH_VERSATILE_PB=y -# CONFIG_MACH_VERSATILE_AB is not set -# CONFIG_MACH_VERSATILE_DT is not set -CONFIG_PLAT_VERSATILE_CLCD=y -CONFIG_PLAT_VERSATILE_FPGA_IRQ=y -CONFIG_PLAT_VERSATILE_SCHED_CLOCK=y -CONFIG_PLAT_VERSATILE=y -CONFIG_ARM_TIMER_SP804=y - -# -# Processor Type -# -CONFIG_CPU_ARM926T=y -CONFIG_CPU_32v5=y -CONFIG_CPU_ABRT_EV5TJ=y -CONFIG_CPU_PABRT_LEGACY=y -CONFIG_CPU_CACHE_VIVT=y -CONFIG_CPU_COPY_V4WB=y -CONFIG_CPU_TLB_V4WBI=y -CONFIG_CPU_CP15=y -CONFIG_CPU_CP15_MMU=y -CONFIG_CPU_USE_DOMAINS=y - -# -# Processor Features -# -# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set -# CONFIG_ARM_THUMB is not set -# CONFIG_CPU_ICACHE_DISABLE is not set -# CONFIG_CPU_DCACHE_DISABLE is not set -# CONFIG_CPU_DCACHE_WRITETHROUGH is not set -# CONFIG_CPU_CACHE_ROUND_ROBIN is not set -# CONFIG_CACHE_L2X0 is not set -CONFIG_ARM_L1_CACHE_SHIFT=5 -CONFIG_ARM_NR_BANKS=8 -CONFIG_MULTI_IRQ_HANDLER=y -CONFIG_ARM_VIC=y -CONFIG_ARM_VIC_NR=2 -CONFIG_ICST=y - -# -# Bus support -# -CONFIG_ARM_AMBA=y -# CONFIG_PCI is not set -# CONFIG_PCI_SYSCALL is not set -# CONFIG_ARCH_SUPPORTS_MSI is not set -# CONFIG_PCCARD is not set - -# -# Kernel Features -# -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y -# CONFIG_VMSPLIT_3G is not set -CONFIG_VMSPLIT_2G=y -# CONFIG_VMSPLIT_1G is not set -CONFIG_PAGE_OFFSET=0x80000000 -CONFIG_ARCH_NR_GPIO=0 -# CONFIG_PREEMPT_NONE is not set -# CONFIG_PREEMPT_VOLUNTARY is not set -CONFIG_PREEMPT=y -CONFIG_PREEMPT_COUNT=y -CONFIG_HZ=100 -CONFIG_AEABI=y -CONFIG_OABI_COMPAT=y -# CONFIG_ARCH_SPARSEMEM_DEFAULT is not set -# CONFIG_ARCH_SELECT_MEMORY_MODEL is not set -CONFIG_HAVE_ARCH_PFN_VALID=y -# CONFIG_HIGHMEM is not set -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_PAGEFLAGS_EXTENDED=y -CONFIG_SPLIT_PTLOCK_CPUS=999999 -# CONFIG_COMPACTION is not set -# CONFIG_PHYS_ADDR_T_64BIT is not set -CONFIG_ZONE_DMA_FLAG=0 -CONFIG_VIRT_TO_BUS=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -CONFIG_FORCE_MAX_ZONEORDER=11 -# CONFIG_LEDS is not set -CONFIG_ALIGNMENT_TRAP=y -CONFIG_UACCESS_WITH_MEMCPY=y -# CONFIG_SECCOMP is not set -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_DEPRECATED_PARAM_STRUCT=y - -# -# Boot options -# -# CONFIG_USE_OF is not set -CONFIG_ZBOOT_ROM_TEXT=0x0 -CONFIG_ZBOOT_ROM_BSS=0x0 -CONFIG_CMDLINE="" -# CONFIG_XIP_KERNEL is not set -CONFIG_KEXEC=y -CONFIG_ATAGS_PROC=y -# CONFIG_CRASH_DUMP is not set -# CONFIG_AUTO_ZRELADDR is not set - -# -# CPU Power Management -# -# CONFIG_CPU_IDLE is not set - -# -# Floating point emulation -# - -# -# At least one emulation must be selected -# -# CONFIG_FPE_NWFPE is not set -# CONFIG_FPE_FASTFPE is not set -CONFIG_VFP=y - -# -# Userspace binary formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_HAVE_AOUT=y -# CONFIG_BINFMT_AOUT is not set -# CONFIG_BINFMT_MISC is not set - -# -# Power management options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM_RUNTIME is not set -CONFIG_ARCH_SUSPEND_POSSIBLE=y -# CONFIG_ARM_CPU_SUSPEND is not set -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_UNIX=y -CONFIG_UNIX_DIAG=y -CONFIG_XFRM=y -CONFIG_XFRM_USER=y -# CONFIG_XFRM_SUB_POLICY is not set -# CONFIG_XFRM_MIGRATE is not set -# CONFIG_XFRM_STATISTICS is not set -CONFIG_XFRM_IPCOMP=y -CONFIG_NET_KEY=y -# CONFIG_NET_KEY_MIGRATE is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -CONFIG_IP_ADVANCED_ROUTER=y -CONFIG_IP_FIB_TRIE_STATS=y -CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_MULTIPATH=y -CONFIG_IP_ROUTE_VERBOSE=y -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -CONFIG_IP_PNP_RARP=y -CONFIG_NET_IPIP=y -CONFIG_NET_IPGRE_DEMUX=y -CONFIG_NET_IPGRE=y -CONFIG_NET_IPGRE_BROADCAST=y -CONFIG_IP_MROUTE=y -CONFIG_IP_MROUTE_MULTIPLE_TABLES=y -CONFIG_IP_PIMSM_V1=y -CONFIG_IP_PIMSM_V2=y -CONFIG_ARPD=y -CONFIG_SYN_COOKIES=y -CONFIG_INET_AH=y -CONFIG_INET_ESP=y -CONFIG_INET_IPCOMP=y -CONFIG_INET_XFRM_TUNNEL=y -CONFIG_INET_TUNNEL=y -CONFIG_INET_XFRM_MODE_TRANSPORT=y -CONFIG_INET_XFRM_MODE_TUNNEL=y -CONFIG_INET_XFRM_MODE_BEET=y -CONFIG_INET_LRO=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -CONFIG_INET_UDP_DIAG=y -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_PRIVACY is not set -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -CONFIG_INET6_XFRM_MODE_TRANSPORT=y -CONFIG_INET6_XFRM_MODE_TUNNEL=y -CONFIG_INET6_XFRM_MODE_BEET=y -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -CONFIG_IPV6_SIT=y -# CONFIG_IPV6_SIT_6RD is not set -CONFIG_IPV6_NDISC_NODETYPE=y -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_ECONET is not set -# CONFIG_WAN_ROUTER is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_NETPRIO_CGROUP is not set -CONFIG_BQL=y -CONFIG_HAVE_BPF_JIT=y -# CONFIG_BPF_JIT is not set - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_IRDA is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -CONFIG_FIB_RULES=y -CONFIG_WIRELESS=y -CONFIG_WIRELESS_EXT=y -CONFIG_WEXT_CORE=y -CONFIG_WEXT_PROC=y -CONFIG_WEXT_SPY=y -CONFIG_WEXT_PRIV=y -CONFIG_CFG80211=y -# CONFIG_NL80211_TESTMODE is not set -# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set -# CONFIG_CFG80211_REG_DEBUG is not set -CONFIG_CFG80211_DEFAULT_PS=y -# CONFIG_CFG80211_INTERNAL_REGDB is not set -CONFIG_CFG80211_WEXT=y -# CONFIG_WIRELESS_EXT_SYSFS is not set -CONFIG_LIB80211=m -CONFIG_LIB80211_CRYPT_WEP=m -CONFIG_LIB80211_CRYPT_CCMP=m -CONFIG_LIB80211_CRYPT_TKIP=m -# CONFIG_LIB80211_DEBUG is not set -CONFIG_MAC80211=y -CONFIG_MAC80211_HAS_RC=y -# CONFIG_MAC80211_RC_PID is not set -CONFIG_MAC80211_RC_MINSTREL=y -CONFIG_MAC80211_RC_MINSTREL_HT=y -CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y -CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" -# CONFIG_MAC80211_MESH is not set -# CONFIG_MAC80211_DEBUG_MENU is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set - -# -# Device Drivers -# - -# -# Generic Driver Options -# -CONFIG_UEVENT_HELPER_PATH="" -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -# CONFIG_DMA_SHARED_BUFFER is not set -# CONFIG_CONNECTOR is not set -CONFIG_MTD=y -# CONFIG_MTD_TESTS is not set -# CONFIG_MTD_REDBOOT_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -CONFIG_MTD_AFS_PARTS=y -# CONFIG_MTD_AR7_PARTS is not set - -# -# User Modules And Translation Layers -# -CONFIG_MTD_CHAR=y -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_CFI_I4 is not set -# CONFIG_MTD_CFI_I8 is not set -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_PLATRAM is not set -# CONFIG_MTD_PISMO is not set - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_M25P80 is not set -# CONFIG_MTD_SST25L is not set -CONFIG_MTD_SLRAM=y -CONFIG_MTD_PHRAM=y -# CONFIG_MTD_MTDRAM is not set -CONFIG_MTD_BLOCK2MTD=y - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# CONFIG_MTD_NAND is not set -# CONFIG_MTD_ONENAND is not set - -# -# LPDDR flash memory drivers -# -# CONFIG_MTD_LPDDR is not set -# CONFIG_MTD_UBI is not set -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set - -# -# DRBD disabled because PROC_FS, INET or CONNECTOR not selected -# -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_UB is not set -CONFIG_BLK_DEV_RAM=y -CONFIG_BLK_DEV_RAM_COUNT=16 -CONFIG_BLK_DEV_RAM_SIZE=4096 -# CONFIG_BLK_DEV_XIP is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_MG_DISK is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_ATMEL_PWM is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1780 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_TI_DAC7512 is not set -# CONFIG_ARM_CHARLCD is not set -# CONFIG_BMP085 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_IWMC3200TOP is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# CONFIG_SCSI_DMA is not set -# CONFIG_SCSI_NETLINK is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -CONFIG_MII=y -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_NETPOLL is not set -# CONFIG_NET_POLL_CONTROLLER is not set -# CONFIG_TUN is not set -# CONFIG_VETH is not set - -# -# CAIF transport drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_CALXEDA_XGMAC is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CIRRUS is not set -# CONFIG_DM9000 is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_FARADAY is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# USB Network Adapters -# -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -# CONFIG_LIBERTAS_THINFIRM is not set -# CONFIG_AT76C50X_USB is not set -# CONFIG_USB_ZD1201 is not set -# CONFIG_USB_NET_RNDIS_WLAN is not set -# CONFIG_RTL8187 is not set -# CONFIG_MAC80211_HWSIM is not set -# CONFIG_ATH_COMMON is not set -# CONFIG_B43 is not set -# CONFIG_B43LEGACY is not set -# CONFIG_BRCMFMAC is not set -CONFIG_HOSTAP=m -# CONFIG_HOSTAP_FIRMWARE is not set -# CONFIG_IWM is not set -# CONFIG_LIBERTAS is not set -# CONFIG_P54_COMMON is not set -# CONFIG_RT2X00 is not set -CONFIG_RTL8192CU=y -CONFIG_RTLWIFI=y -# CONFIG_RTLWIFI_DEBUG is not set -CONFIG_RTL8192C_COMMON=y -# CONFIG_WL1251 is not set -# CONFIG_WL12XX_MENU is not set -# CONFIG_ZD1211RW is not set -# CONFIG_MWIFIEX is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -CONFIG_INPUT_POLLDEV=y -# CONFIG_INPUT_SPARSEKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_MPU3050 is not set -# CONFIG_INPUT_GP2A is not set -# CONFIG_INPUT_GPIO_TILT_POLLED is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_CMA3000 is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -CONFIG_DEVPTS_MULTIPLE_INSTANCES=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -# CONFIG_SERIAL_8250 is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_AMBA_PL011 is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX3107 is not set -CONFIG_SERIAL_CORE=y -# CONFIG_SERIAL_TIMBERDALE is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -CONFIG_SERIAL_ALTERA_UART=y -CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 -CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 -# CONFIG_SERIAL_ALTERA_UART_CONSOLE is not set -# CONFIG_SERIAL_IFX6X60 is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_HVC_DCC is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_R3964 is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_RAMOOPS is not set -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_VERSATILE is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_OC_TINY is not set -CONFIG_SPI_PL022=y -# CONFIG_SPI_PXA2XX_PCI is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_DESIGNWARE is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_HSI is not set - -# -# PPS support -# -# CONFIG_PPS is not set - -# -# PPS generators support -# - -# -# PTP clock support -# - -# -# Enable Device Drivers -> PPS to see the PTP clock options. -# -CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y -CONFIG_GPIOLIB=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y - -# -# Memory mapped GPIO drivers: -# -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_PL061 is not set - -# -# I2C GPIO expanders: -# -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_SX150X is not set -# CONFIG_GPIO_ADP5588 is not set - -# -# PCI GPIO expanders: -# - -# -# SPI GPIO expanders: -# -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MCP23S08 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_74X164 is not set - -# -# AC97 GPIO expanders: -# - -# -# MODULbus GPIO expanders: -# -# CONFIG_W1 is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_ARM_SP805_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y - -# -# Broadcom specific AMBA -# -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_ASIC3 is not set -# CONFIG_HTC_EGPIO is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_STMPE is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_T7L66XB is not set -# CONFIG_MFD_TC6387XB is not set -# CONFIG_MFD_TC6393XB is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_S5M_CORE is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_MC13XXX is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_DRM is not set -# CONFIG_VGASTATE is not set -# CONFIG_VIDEO_OUTPUT_CONTROL is not set -# CONFIG_FB is not set -# CONFIG_EXYNOS_VIDEO is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -# CONFIG_SOUND is not set -# CONFIG_HID_SUPPORT is not set -# CONFIG_USB_ARCH_HAS_OHCI is not set -# CONFIG_USB_ARCH_HAS_EHCI is not set -# CONFIG_USB_ARCH_HAS_XHCI is not set -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -# CONFIG_USB_DEBUG is not set -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -# CONFIG_USB_DEVICEFS is not set -CONFIG_USB_DEVICE_CLASS=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_MON is not set -# CONFIG_USB_WUSB_CBAF is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_ISP1760_HCD is not set -# CONFIG_USB_ISP1362_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -CONFIG_USB_MUSB_HDRC=y -# CONFIG_USB_MUSB_TUSB6010 is not set -CONFIG_MUSB_PIO_ONLY=y -# CONFIG_USB_RENESAS_USBHS is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -CONFIG_USB_WDM=y -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -# CONFIG_USB_LIBUSUAL is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_RIO500 is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_LED is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -CONFIG_USB_GADGET=y -# CONFIG_USB_GADGET_DEBUG is not set -# CONFIG_USB_GADGET_DEBUG_FILES is not set -CONFIG_USB_GADGET_VBUS_DRAW=2 -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 -# CONFIG_USB_FUSB300 is not set -# CONFIG_USB_R8A66597 is not set -# CONFIG_USB_MV_UDC is not set -# CONFIG_USB_GADGET_MUSB_HDRC is not set -# CONFIG_USB_M66592 is not set -# CONFIG_USB_NET2272 is not set -# CONFIG_USB_DUMMY_HCD is not set -CONFIG_USB_GADGET_DUALSPEED=y -# CONFIG_USB_ZERO is not set -# CONFIG_USB_ETH is not set -# CONFIG_USB_G_NCM is not set -# CONFIG_USB_GADGETFS is not set -# CONFIG_USB_FUNCTIONFS is not set -# CONFIG_USB_FILE_STORAGE is not set -# CONFIG_USB_MASS_STORAGE is not set -# CONFIG_USB_G_SERIAL is not set -# CONFIG_USB_G_PRINTER is not set -# CONFIG_USB_CDC_COMPOSITE is not set -# CONFIG_USB_G_ACM_MS is not set -# CONFIG_USB_G_MULTI is not set -# CONFIG_USB_G_HID is not set -# CONFIG_USB_G_DBGP is not set - -# -# OTG and related infrastructure -# -CONFIG_USB_OTG_UTILS=y -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ULPI is not set -CONFIG_NOP_USB_XCEIV=y -CONFIG_MMC=y -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_UNSAFE_RESUME is not set -CONFIG_MMC_CLKGATE=y - -# -# MMC/SD/SDIO Card Drivers -# -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=32 -CONFIG_MMC_BLOCK_BOUNCE=y -# CONFIG_SDIO_UART is not set -CONFIG_MMC_TEST=y - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_ARMMMCI is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SDHCI_PXAV3 is not set -# CONFIG_MMC_SDHCI_PXAV2 is not set -# CONFIG_MMC_SPI is not set -# CONFIG_MMC_DW is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_DEBUG=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_DS3234 is not set -# CONFIG_RTC_DRV_PCF2123 is not set - -# -# Platform RTC drivers -# -# CONFIG_RTC_DRV_CMOS is not set -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_PL030 is not set -# CONFIG_RTC_DRV_PL031 is not set -CONFIG_DMADEVICES=y -CONFIG_DMADEVICES_DEBUG=y -# CONFIG_DMADEVICES_VDEBUG is not set - -# -# DMA Devices -# -# CONFIG_AMBA_PL08X is not set -# CONFIG_DW_DMAC is not set -# CONFIG_TIMB_DMA is not set -# CONFIG_PL330_DMA is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_BALLOON is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -CONFIG_STAGING=y -# CONFIG_USBIP_CORE is not set -# CONFIG_W35UND is not set -# CONFIG_PRISM2_USB is not set -# CONFIG_ECHO is not set -# CONFIG_ASUS_OLED is not set -# CONFIG_RTLLIB is not set -CONFIG_R8712U=y -# CONFIG_TRANZPORT is not set -# CONFIG_VT6656 is not set -# CONFIG_IIO is not set -# CONFIG_BCM_WIMAX is not set -# CONFIG_FT1000 is not set - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set -# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set -# CONFIG_STAGING_MEDIA is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_PHONE is not set -# CONFIG_USB_WPAN_HCD is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_MACH_CLKDEV=y - -# -# Hardware Spinlock drivers -# -CONFIG_CLKSRC_MMIO=y -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers (EXPERIMENTAL) -# - -# -# Rpmsg drivers (EXPERIMENTAL) -# -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_PM_DEVFREQ is not set - -# -# File systems -# -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_FILE_LOCKING=y -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -CONFIG_AUTOFS4_FS=y -# CONFIG_FUSE_FS is not set -CONFIG_GENERIC_ACL=y - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -CONFIG_CACHEFILES=y -# CONFIG_CACHEFILES_DEBUG is not set -# CONFIG_CACHEFILES_HISTOGRAM is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLB_PAGE is not set -CONFIG_CONFIGFS_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -CONFIG_JFFS2_FS=y -CONFIG_JFFS2_FS_DEBUG=0 -CONFIG_JFFS2_FS_WRITEBUFFER=y -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set -# CONFIG_JFFS2_SUMMARY is not set -# CONFIG_JFFS2_FS_XATTR is not set -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set -CONFIG_JFFS2_ZLIB=y -# CONFIG_JFFS2_LZO is not set -CONFIG_JFFS2_RTIME=y -# CONFIG_JFFS2_RUBIN is not set -# CONFIG_LOGFS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -# CONFIG_SQUASHFS_XATTR is not set -# CONFIG_SQUASHFS_ZLIB is not set -# CONFIG_SQUASHFS_LZO is not set -CONFIG_SQUASHFS_XZ=y -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FSCACHE is not set -# CONFIG_9P_FS_POSIX_ACL is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set - -# -# Kernel hacking -# -CONFIG_PRINTK_TIME=y -CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 -# CONFIG_ENABLE_WARN_DEPRECATED is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_DEBUG_FS is not set -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_SHIRQ is not set -# CONFIG_LOCKUP_DETECTOR is not set -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# CONFIG_TIMER_STATS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -# CONFIG_DEBUG_KMEMLEAK is not set -CONFIG_DEBUG_PREEMPT=y -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_RT_MUTEX_TESTER is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_SPARSE_RCU_POINTER is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_DEBUG_BUGVERBOSE=y -# CONFIG_DEBUG_INFO is not set -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_WRITECOUNT is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set -CONFIG_FRAME_POINTER=y -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -# CONFIG_DEBUG_PAGEALLOC is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_STRICT_DEVMEM is not set -# CONFIG_ARM_UNWIND is not set -# CONFIG_DEBUG_USER is not set -# CONFIG_DEBUG_LL is not set -# CONFIG_OC_ETM is not set - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEYS_DEBUG_PROC_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_PCOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -# CONFIG_CRYPTO_NULL is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_SEQIV is not set - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set - -# -# Hash modes -# -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -CONFIG_CRYPTO_MICHAEL_MIC=y -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_ANUBIS is not set -CONFIG_CRYPTO_ARC4=y -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -# CONFIG_CRYPTO_ZLIB is not set -CONFIG_CRYPTO_LZO=y - -# -# Random Number Generation -# -CONFIG_CRYPTO_ANSI_CPRNG=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -CONFIG_CRYPTO_HW=y -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IO=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -CONFIG_CRC_ITU_T=y -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT=y -CONFIG_HAS_DMA=y -CONFIG_DQL=y -CONFIG_NLATTR=y -CONFIG_GENERIC_ATOMIC64=y -CONFIG_AVERAGE=y -# CONFIG_CORDIC is not set diff --git a/u-root b/u-root new file mode 160000 index 00000000..3ed70c35 --- /dev/null +++ b/u-root @@ -0,0 +1 @@ +Subproject commit 3ed70c35ac04d13f82b464fb48cfbc9ef8cf217b